
body {
    background-color: #e0f7fa;
    color: #004d40;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #004d40;
  }
  
  p {
    color: #004d40;
  }
  
  a {
    color: #00796b;
    text-decoration: none;
  }
  
  a:hover {
    color: #009688; 
  }
    
  nav {
    background-color: #006064;
    color: #e0f7fa;
  }
  
  footer {
    background-color: #02352d;
    color: #e0f7fa; 
  }
  
  footer h4 {
    color: #ffffff; 
  }

  footer p {
    color: #00796b;
  }
    
  button {
    background-color: #00796b;
    color: #e0f7fa;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #004d40;
  }
  
  .accent {
    color: #80cbc4;
  }
  
  .accent-bg {
    background-color: #b2dfdb;
  }
  
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    border: 1px solid #008000; 
  }


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #006064;
    color: #e0f7fa;
    padding: 10px 20px; 
    border-radius: 1px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-item {
    margin-left: 1rem;
    position: relative;
}

.navbar-item a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    color: #e0f7fa;
    transition: color 0.3s ease;
}

.navbar-item a:hover {
    color: #009688; 
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    max-width: 150px;
    background-color: #00796b;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item a {
    padding: 0.5rem 1rem;
    display: block;
    color: #e0f7fa;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item a:hover {
    background-color: #005b57; 
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #e0f7fa;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-item {
        width: 100%;
        text-align: center;
    }

    .navbar-toggle {
        display: flex;
    }
}




.faqs {
    max-width: 1000px;
    margin: 0 auto 10px 30px;
    margin-top: 80px;
    padding: 0 20px;
}

.accordion {
    max-width: 1000px;
    margin: 10px auto 10px 30px;
    padding: 0 20px; 
    margin-bottom: 20px;
}

.accordion-item {
    border-bottom: 1px solid green;
    margin-top: 5px;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    font-weight: bolder;
}
.accordion-header:hover {
    transform: translateX(10px);
}

.accordion-content {
    display: none;
    padding: 10px 20px;
}

.icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.icon i {
    font-size: 1.2em;
    color: #888;
}






.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
}

.grid-item {
    padding: 20px;
}

h2, h3 {
    margin-top: 0;
}

form {
    margin-top: 10px;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

ul {
    list-style-type: none;
    padding: 0;
}


ul li a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.language-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.language-list span {
    padding: 5px 10px;
    border:1px solid #004d40;
    border-radius: 4px;
}





footer {
    padding: 40px 0;
    border-bottom-left-radius: 20px; 
    border-bottom-right-radius: 20px;     

}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-col {
    flex: 1 1 200px;
    margin: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
}

.social-links a:hover {
    color: #f90;
}

#newsletter-form input {
    padding: 10px;
    width: 70%;
    margin-right: 30px;
    border: none;
    border-radius: 5px;
}

#newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f90;
    color: #fff;
    cursor: pointer;
    margin: 10px;
}

#newsletter-form button:hover {
    background-color: #ffb84d;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom span {
    font-weight: 600;
}


@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }

    .footer-col {
        margin: 20px 0;
    }

    #newsletter-form input {
        width: 70%;
        margin: 10px 0;
    }

    #newsletter-form button {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 20px 10px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col ul li {
        font-size: 14px;
    }

    .social-links a {
        font-size: 16px;
    }
}






.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    padding-top: 60px;
}

.modal-content {
    background-color: #FFFFF0;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
