.image-container {
    position: relative;
    margin-top: 40px;
  }

  .responsive-image {
    width: 100%;
    height: auto;       
  }

  @media (max-width: 767px) {
  .responsive-image {
    height: 150px; 
    }
  }

  .about h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    color: #ff0000 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: -30px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .about-modern {
    padding: 60px 0;
    background: #ffffff;
  }

  .about-modern .title-section {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-top: 80px !important;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
  }

  .about-modern .title-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff0000;
  }

  .about-modern .content-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
  }

  .about-modern .image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
  }

  .about-modern .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .about-modern .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
  }

  .about-modern .gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .about-modern .gallery-item:hover img {
    transform: scale(1.1);
  }

  .about-modern .gallery-item:hover::after {
    opacity: 1;
  }

  /* Special styling for featured images */
  .about-modern .gallery-item.featured {
    grid-column: span 2;
  }

  .about-modern .gallery-item.featured img {
    height: 400px;
  }

  @media (max-width: 768px) {
    .about-modern .image-gallery {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .about-modern .gallery-item.featured {
      grid-column: auto;
    }

    .about-modern .gallery-item img,
    .about-modern .gallery-item.featured img {
      height: 200px;
    }
  }

  /* Modern Modal */
  .custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }

  .modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  }

  .modal-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    max-height: 85vh;
  }

  .close-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10000;
  }

  .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  /* Modern Map Section */
  .map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  .map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
  }

  .map-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .map-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .map-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
  }

  .map-image-container:hover img {
    transform: scale(1.05);
  }

  .map-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .map-image-container:hover .map-image-overlay {
    opacity: 1;
  }

  .google-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
  }

  .google-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  @media (max-width: 768px) {
    .map-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .map-image-container, 
    .google-map-container {
      height: 300px;
    }
  }

  /* Modern Group Photos Section */
  .group-photos-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
  }

  .group-photos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .group-photo-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    cursor: pointer;
  }

  .group-photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .group-photo-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
  }

  .group-photo-item:hover img {
    transform: scale(1.05);
  }

  .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .group-photo-item:hover .photo-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .photo-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: white !important;
  }

  .photo-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .group-photo-item img {
      height: 300px;
    }
    
    .photo-overlay {
      padding: 20px;
    }

    .photo-overlay h3 {
      font-size: 20px;
    }
  }