
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--monaco-blue) 0%, #003366 100%);
      color: white;
      padding: 20px 0 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-overlay {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 5px;
      animation: fadeInUp 1s ease;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 1200px;
      margin: 0 auto;
      opacity: 0.9;
      animation: fadeInUp 1s ease 0.2s both;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Breadcrumb */
    .breadcrumb {
      background: var(--bg-light);
      padding: 10px 0;
      border-bottom: 1px solid #e9ecef;
    }

    .breadcrumb-content {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-light);
    }

    .breadcrumb a {
      color: var(--monaco-blue);
      text-decoration: none;
    }

    /* Main Content Sections */
    .content-section {
      padding: 10px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 5px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--monaco-blue);
      margin-bottom: 10px;
    }

    .section-header .highlight {
      color: var(--monaco-orange);
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 500px;
      margin: 0 auto;
    }

    /* About Content Grid */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 20px;
    }

    .about-text h3 {
      font-size: 2rem;
      color: var(--monaco-blue);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-image:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .about-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    /* Story Section */
    .story-section {
      background: var(--bg-light);
      border-radius: 30px;
      padding: 10px;
      margin: 5px 0;
      position: relative;
      overflow: hidden;
    }

    .story-section::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 400px;
      height: 400px;
      background: linear-gradient(45deg, var(--monaco-orange), #ff9500);
      border-radius: 50%;
      opacity: 0.1;
      pointer-events: none;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 13fr;
      gap: 40px;
      align-items: start;
    }

    .story-content h3 {
      font-size: 2.2rem;
      color: var(--monaco-blue);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .story-content p {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 10px;
      color: var(--text-dark);
    }

    .story-content ul {
      margin: 10px 0;
      padding-left: 0;
    }

    .story-content li {
      list-style: none;
      padding: 10px 0;
      padding-left: 30px;
      position: relative;
      color: var(--text-dark);
    }

    .story-content li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--monaco-orange);
      font-weight: bold;
      font-size: 1.2rem;
    }

    .learn-more-btn {
      display: inline-block;
      background: var(--monaco-orange);
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(242, 124, 30, 0.3);
    }

    .learn-more-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(242, 124, 30, 0.4);
    }

    /* Mission Vision Grid */
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 40px 0;
    }

    .mv-card {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      border-left: 5px solid var(--monaco-blue);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .mv-card::before {
      pointer-events: none;
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: linear-gradient(45deg, var(--monaco-blue), #003366);
      border-radius: 50%;
      transform: translate(30px, -30px);
      opacity: 0.1;
    }

    .mv-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .mv-card h3 {
      font-size: 1.8rem;
      color: var(--monaco-blue);
      margin-bottom: 5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .mv-card .icon {
      background: var(--light-blue);
      padding: 10px;
      border-radius: 50%;
      color: var(--monaco-blue);
    }

    .mv-card p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-dark);
    }

    /* Core Values */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 30px 0;
    }

    .value-card {
      background: white;
      padding: 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border-top: 4px solid var(--monaco-orange);
    }

    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .value-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(45deg, var(--monaco-orange), #ff9500);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 2rem;
    }

    .value-card h4 {
      font-size: 1.4rem;
      color: var(--monaco-blue);
      margin-bottom: 5px;
      font-weight: 600;
    }

    .value-card p {
      color: var(--text-light);
      line-height: 1.5;
    }

    /* Why Choose Section */
    .choose-section {
      background: linear-gradient(135deg, var(--light-blue) 0%, #f0f8ff 100%);
      padding: 40px 0;
      margin: auto 0;
      
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .choose-card {
      background: white;
      padding: 20px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    .choose-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .choose-card h4 {
      font-size: 1.5rem;
      color: var(--monaco-blue);
      margin-bottom: 10px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .choose-card .icon {
      color: var(--monaco-orange);
      font-size: 2rem;
    }

    /* Gallery Section */
    .gallery-section {
      text-align: center;
      padding: 10px 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 10px 0;
    }

    .gallery-item {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: var(--shadow-hover);
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--monaco-blue) 0%, #003366 100%);
      color: white;
      text-align: center;
      padding: 10px 0;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
      opacity: 0.3;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-section h3 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      background: var(--monaco-orange);
      color: white;
      padding: 18px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(242, 124, 30, 0.3);
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(242, 124, 30, 0.4);
    }
/* Gallery Section */
.campus-gallery {
  padding: 10px 0;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.campus-gallery::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 124, 30, 0.03) 0%, transparent 70%);
  animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.campus-gallery h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--monaco-blue);
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.campus-gallery h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--monaco-orange), #ff9500);
  border-radius: 2px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.gallery-row img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-row img::before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 34, 68, 0.7), rgba(242, 124, 30, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-row img:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.gallery-row img:hover::before {
  opacity: 1;
}

.gallery-row img:nth-child(1) {
  animation: fadeInUp 0.8s ease 0.1s both;
}

.gallery-row img:nth-child(2) {
  animation: fadeInUp 0.8s ease 0.3s both;
}

.gallery-row img:nth-child(3) {
  animation: fadeInUp 0.8s ease 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-gallery-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--monaco-orange) 0%, #ff9500 100%);
  color: white;
  padding: 10px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(242, 124, 30, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.view-gallery-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.view-gallery-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(242, 124, 30, 0.4);
}

.view-gallery-btn:hover::before {
  left: 100%;
}

.view-gallery-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Ready to Begin Your Journey CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--monaco-blue) 0%, #001a33 50%, #003366 100%);
  color: white;
  text-align: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin: 10px 0 0 0;
  width: 100%;
  min-height: 50px;
  
}

/* Animated Background Elements */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 30%, rgba(242, 124, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(242,124,30,0.1)"/><circle cx="60" cy="30" r="0.8" fill="rgba(255,255,255,0.08)"/><circle cx="30" cy="70" r="1.2" fill="rgba(242,124,30,0.08)"/></svg>') repeat;
  animation: floatingPattern 25s linear infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent, rgba(242, 124, 30, 0.03), transparent);
  animation: rotateGlow 30s linear infinite;
}

@keyframes floatingPattern {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-5px); }
  75% { transform: translateY(-25px) translateX(8px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section h3 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e6f3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
  line-height: 1.2;
}

@keyframes titleGlow {
  0% { 
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    filter: brightness(1);
  }
  100% { 
    text-shadow: 0 4px 30px rgba(242, 124, 30, 0.2);
    filter: brightness(1.1);
  }
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.3s both;
  color: #e9ecef;
}

.cta-button {
  background: linear-gradient(135deg, var(--monaco-orange) 0%, #ff6b00 50%, #e55a00 100%);
  color: white;
  padding: 10px 50px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 10px 30px rgba(242, 124, 30, 0.4),
    0 0 0 0 rgba(242, 124, 30, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease 0.6s both;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(242, 124, 30, 0.5),
    0 0 20px rgba(242, 124, 30, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: pulse 1.5s infinite;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover::after {
  width: 300px;
  height: 300px;
}

.cta-button:active {
  transform: translateY(-4px) scale(1.02);
}

@keyframes pulse {
  0% { box-shadow: 0 20px 50px rgba(242, 124, 30, 0.5), 0 0 20px rgba(242, 124, 30, 0.8); }
  50% { box-shadow: 0 25px 60px rgba(242, 124, 30, 0.6), 0 0 30px rgba(242, 124, 30, 0.9); }
  100% { box-shadow: 0 20px 50px rgba(242, 124, 30, 0.5), 0 0 20px rgba(242, 124, 30, 0.8); }
}

/* Decorative Elements */
.cta-section .container::before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(242, 124, 30, 0.1), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-section .container::after {
  pointer-events: none;
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-15px) rotate(270deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 0;
  }
  
  .cta-section h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 30px 0;
  }
  
  .cta-section h3 {
    font-size: 1.35rem;
    line-height: 1.2;
  }
  
  .cta-section p {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
  
  .cta-button {
    padding: 10px 22px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
  
  .cta-content {
    padding: 0 15px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - styleabout.css
   Full mobile fix for all sections
   ============================================ */

@media (max-width: 768px) {

  /* Hero */
  .hero {
    padding: 40px 20px 30px;
  }

  .hero h1 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 8px 15px;
  }

  .breadcrumb-content {
    font-size: 12px;
    flex-wrap: wrap;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* About Grid → single column */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-image img {
    height: 250px;
  }

  /* Story Section */
  .story-section {
    border-radius: 16px;
    padding: 20px 15px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-content h3 {
    font-size: 1.6rem;
  }

  /* Mission/Vision Grid → single column */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
  }

  .mv-card {
    padding: 25px 20px;
  }

  .mv-card h3 {
    font-size: 1.4rem;
  }

  /* Values Grid */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 20px 15px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .value-card h4 {
    font-size: 1.2rem;
  }

  /* Why Choose Section */
  .choose-section {
    padding: 30px 0;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-card {
    padding: 20px 15px;
  }

  .choose-card h4 {
    font-size: 1.2rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item img {
    height: 200px;
  }

  /* Campus Gallery */
  .campus-gallery h2 {
    font-size: 1.8rem;
  }

  .gallery-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .gallery-row img:first-child {
    grid-column: 1 / -1;
    height: 220px;
  }

  .gallery-row img:not(:first-child) {
    height: 160px;
  }

  /* Content sections general padding */
  .content-section {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {

  /* Hero */
  .hero h1 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 1.5rem;
  }

  /* About */
  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-image img {
    height: 200px;
  }

  /* Story */
  .story-content h3 {
    font-size: 1.4rem;
  }

  /* M/V Cards */
  .mv-card {
    padding: 20px 15px;
  }

  .mv-card h3 {
    font-size: 1.2rem;
    gap: 10px;
  }

  /* Choose cards */
  .choose-card h4 {
    font-size: 1.1rem;
  }

  .choose-card .icon {
    font-size: 1.6rem;
  }

  /* Learn more btn */
  .learn-more-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Gallery */
  .campus-gallery h2 {
    font-size: 1.5rem;
  }

  .gallery-row img:first-child {
    height: 190px;
  }

  .gallery-row img:not(:first-child) {
    height: 140px;
    border-radius: 12px;
  }
}
