body {
    background-color: #f5f5dc; /* Beige background */
    margin: 0;
    font-family: Arial, sans-serif;
  }
/* Navbar styles */
nav {
    background-color: #f5deb3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    color: #666;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: block;
    color: #666;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
}

nav ul li a:hover {
    color: #333;
    transform: scale(1.05);
}

/* About section styles */
.about-section {
    background-color: #f5f5dc;
    padding: 0 0;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 5px;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.container-header h2 {
    font-size: 32px;
}

.container-header p {
    font-size: 20px;
    padding-bottom: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.about-content {
    max-width: 1200px;
    display: flex;
}

.about-image {
    width: 50%; /* Adjust image width as needed */
    display: flex;
    margin-right: 20px; /* Add space between image and text */
    align-items: center;
    text-align: center;
    justify-content: center;
}

.about-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.about-content p strong {
    font-size: 20px;
}

.about-text {
    width: 50%;
    margin-right: 10px;
}

p {
    padding: 0px;
    margin: 0px;
}

img {
    max-width: 100%;
}

footer {
    background-color: #f5deb3; /* Light beige footer */
    padding: 20px 0;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-content p {
    margin: 0;
}

.left, .middle, .right {
    flex: 1;
    text-align: center;
}

.right {
    text-align: right;
}

/* Adjust the size of the Facebook icon if needed */
.right i {
    font-size: 24px;
}

.hamburger {
    display: none;
  }
  
  @media only screen and (max-width: 825px) {
    nav ul li {
      display: block; /* Ensure nav links are stacked vertically */
  }
  
    .logo {
        display: block;
        text-align: center;
    }
  
    .nav-links {
        display: none;
    }
  
    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
  
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px auto;
        transition: all 0.3s ease;
    }
  
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
  
    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
  
    .nav-links.open {
        display: block !important;
    }
  
    .open {
      display: block !important;
    }

    footer {
        padding: 10px; /* Reduce padding for smaller screens */
    }
    .container {
        flex-direction: column;
      }

      .about-content {
        flex-direction: column;
      }

      .about-image, .about-text {
        width: 100%;
        text-align: center;
      }
  }