body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #86bdea;
    color: #694e4e;
    line-height: 1.6;
    text-align: center;
    font-size: x-large;
  }
  
  a {
    text-decoration: none;
    color: #333;
  }
  
  a:hover {
    color: #f04e30;
  }

  .header-section {
    background-color: #212121;
    color: #fff;
    padding: 10px 20px;
  }
  
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-image {
    height: 60px;
  }
  
  .nav-menu .menu-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu .menu-item {
    margin: 0 15px;
    padding: 5px 10px;
    font-weight: 700;
    color: #fff;
  }
  
  .nav-menu .menu-item.active {
    border-bottom: 2px solid #f04e30;
  }
  
  .main-content {
    padding: 40px 20px;
  }
  
  .about-section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .about-heading {
    font-size: 2.5rem;
    color: #212121;
    margin-bottom: 20px;
  }
  
  .about-paragraph {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
  }
  
 
  .gallery-section {
    text-align: center;
  }
  
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #212121;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .gallery-image:hover {
    transform: scale(1.05);
  }
  
  .footer-section {
    background-color: #212121;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
  }
  
  .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-info, .social-links {
    margin: 10px 0;
  }
  
  .footer-text {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  
  .footer-copy {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  
  .social-link {
    color: #f04e30;
    font-weight: 700;
  }
  
  .social-link:hover {
    text-decoration: underline;
  }
  