
  
  body {
    /* font-family: Arial, sans-serif; */
    /* overflow-x: hidden; */
  }
  
  .logo{
    border: #ffff 1px;
    border-radius: 99px;
    background-color: #ffff;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F7F3E9;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .logo img {
    height: 60px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    z-index: 999;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }


  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #F7F3E9;
      width: 200px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links li {
      margin: 15px 0;
      text-align: center;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
 



footer {
    background-color: #FFF4E0;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin: 10px;
    min-width: 200px;
}

.logo {
    max-width: 100px;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section input[type="email"] {
    /* padding: 8px; */
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    /* width: 80%; */
    max-width: 250px;
    background-color:#FFF4E0 ;
}
.footer-section input[type="text"] {
  /* padding: 8px; */
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    /* width: 80%; */
    max-width: 250px;
    background-color:#FFF4E0 ;
}
.footer-section input[type="text"]:focus-visible {
  /* padding: 8px; */
  
outline: none;  
}
.footer-section input[type="email"]:focus-visible {
  /* padding: 8px; */
  
outline: none;  
}
.footer-section button {
    background-color: #FFC1C1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.footer-section button:hover {
    background-color: #D1A4DF;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #333;
    margin: 0 10px;
    font-size: 1.2em;
    text-decoration: none;
}

.social-icons a:hover {
    color: #666;
}

 

