* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #355f4d;
    color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  .header {
    background-color: #355f4d;
    padding: 20px 0;
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
  }
  
  .logo img {
    width: 90px;
    height: 48px;
  }
  
  .menu {
    display: flex;
    gap: 30px;
    font-weight: 500;
  }
  
  .btn-white {
    background-color: white;
    color: #355f4d;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn-white:hover {
    background-color: #f1f1f1;
  }
  
  /* Hero */
  .hero {
    background-color: #355f4d;
    padding: 60px 0;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1 1 500px;
  }
  
  .badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .hero-text p {
    color: #e5e5e5;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .btn-dark {
    display: inline-block;
    background-color: #fff;
    color: #355f4d;
    padding: 14px 22px;
    font-weight: bold;
    border-radius: 28px;
    font-size: 1rem;
    transition: 0.3s;
  }
  
  .btn-dark:hover {
    background-color: #f0f0f0;
  }
  
  .hero-image {
    flex: 1 1 500px;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: 24px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
    }
  
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .menu {
      display: none;
    }
    .stats-header h2{
        flex: 1 !important;
    }
  }
  
  /* STATS SECTION */

.stats {
    background: #fff;
    color: #000;
    padding: 80px 0;
  }
  
  .stats-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .stats-header h2 {
    font-size: 2rem;
    font-weight: bold;
    flex: 1 1 400px;
  }
  
  .stats-header p {
    flex: 1 1 400px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
  }
  
  .stat-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 0 0 1px #eee;
  }
  
  .stat-card-green {
    background: #355f4d;
    color: #fff;
  }
  
  .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .stat-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .stat-card p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .tag {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 12px;
  }
  
  /* CONNECT SECTION */
  
  .connect {
    background-color: #355f4d;
    padding: 80px 20px;
    color: white;
    border-radius: 0;
  }
  
  .connect-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
  }
  
  .connect-text {
    flex: 1 1 400px;
  }
  
  .connect-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .connect-text p {
    font-size: 1rem;
    color: #d9d9d9;
    line-height: 1.6;
  }
  
  .connect-icons {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .connect-icons img {
    max-width: 100%;
    border-radius: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stats-header {
      flex-direction: column;
    }
  
    .connect-content {
      flex-direction: column;
    }
  
    .connect-text h2 {
      font-size: 1.5rem;
    }
  }
  

  /* FAQ SECTION */
.faq {
    padding: 80px 0;
    background: #fff;
    color: #000;
  }
  
  .faq-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .faq-left {
    flex: 1 1 300px;
  }
  
  .faq-left h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .faq-left p {
    margin-bottom: 20px;
  }
  
  .faq-right {
    flex: 2 1 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 16px;
  }
  
  .faq-item h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .faq-item p {
    color: #444;
    font-size: 0.95rem;
  }
  
  /* FORM SECTION */
  .form-section {
    background: #355f4d;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0;
  }
  
  .form-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .form-section p {
    margin-bottom: 30px;
    color: #d8d8d8;
  }
  
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .contact-form input {
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    width: 200px;
  }
  
  .contact-form button {
    padding: 12px 30px;
    border-radius: 999px;
    background: #fff;
    color: #355f4d;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  
  /* FOOTER */
  .footer-bottom {
    background: #f7f7f7;
    padding: 60px 20px 20px;
    color: #000;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-logo {
    font-size: 1.4rem;
    font-weight: bold;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links a {
    color: #333;
    font-size: 0.9rem;
  }
  
  .footer-icons a {
    margin-left: 10px;
    font-size: 1.2rem;
  }
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #777;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-wrapper {
      flex-direction: column;
    }
  
    .footer-columns {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-form {
      flex-direction: column;
    }
  
    .contact-form input {
      width: 100%;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-icons {
      margin-top: 10px;
    }
  }
  
  html {
    scroll-behavior: smooth !important;
  }