body {
    font-family: Arial, sans-serif;
    background-color: #f5f5dc; /* Beige background */
    margin: 0;
}

nav {
    background-color: #f5deb3; /* Light beige navbar */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.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; /* Darken text color on hover */
    transform: scale(1.05); /* Grow the size a little on hover */
}

.content {
    padding: 40px 0;
}

.content-container .contact-info {
    width: 50%;
    float: center;
    text-align: center;
    justify-content: center;
    vertical-align: center;
    align-items: center;
    margin: auto;
}

.content-container .contact-image {
    width: 50%;
    float: center;
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-size: 30px;
}

p {
    font-size: 20px;
}

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;
}

.contact-info h2 {
    font-size: 38px;
}

.contact-info p {
    font-size: 28px;
}

.hamburger {
    display: none;
  }

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    width: 50%;
}

.contact-info p {
    margin: 10px 0;
}

.contact-image {
    width: 50%;
}
  
  @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 */
        position: relative;
    }

    .content-container{
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-image {
        width: 100%;
        height: 30vh;
        margin: auto;
    }

    .content-container .contact-info {
        width: 100% !important;
        float: center;
        text-align: center;
        justify-content: center;
        vertical-align: center;
        align-items: center;
        margin: auto;
        height: 100%;
    }

    .contact-info h2 {
        width: 100%;
        font-size: 36px;
    }
    
    .contact-info p {
        font-size: 28px;
    }
    .container {
        flex-direction: column;
      }

      .contact-image {
        text-align: center;
        align-items: center;
        justify-content: center;
        vertical-align: bottom;
        padding-top: 20px;
      }
  }