.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
  }

  .main-header {
    font-size: 2.0rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    /* text-decoration: underline; */
    text-decoration-color: #ff9a57;
    text-decoration-thickness: 5px;
    text-underline-offset: 10px;
  }

  .main-description {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }

  .image-gallery img:hover {
    transform: scale(1.05);
  }

  .image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures modal stays above all other elements */
  }

  .image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }

  .modal-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }

  .about-section {
    margin-top: 30px;
    background: #f7a46d;
    padding: 20px;
    border-radius: 10px;
  }

  .about-title {
    font-size: 2rem;
    color: #333;
    text-align: center;
  }

  .about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
  }

  @media (max-width: 768px) {
    .main-header {
      font-size: 2rem;
    }

    .main-description, .about-text {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .main-container {
      padding: 20px;
    }

    .image-gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  }