body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #f9fafc;
      color: #222;
      line-height: 1.6;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 0 20px;
    }

    .hero {
      background: linear-gradient(to right, #12B3BA, #163447);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }

    .hero h1 {
      font-size: 52px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 20px;
      max-width: 600px;
      margin: auto;
      margin-bottom: 30px;
    }

    .cta-button {
      display: inline-block;
      background: #fff;
      color: #0066cc;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s;
    }

    .cta-button:hover {
      background: #e6f3ff;
    }

    .cta-button.large {
      font-size: 18px;
      padding: 16px 36px;
    }

    .features {
      padding: 80px 0;
      text-align: center;
    }

    .features h2 {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
    }

    .feature {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .feature:hover {
      transform: translateY(-5px);
    }

    .feature h3 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .cta {
      background: linear-gradient(to right, #12B3BA, #163447);
      color: white;
      text-align: center;
      padding: 60px 20px;
      margin: 50px 0;
      border-radius: 12px;
    }

    .cta h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .cta p {
      font-size: 18px;
      margin-bottom: 25px;
    }

    .cta.container{
        margin-left: auto;
        margin-right: auto;
    }
    .faq {
      padding: 60px 0;
    }

    .faq h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 30px;
    }

    .faq-item {
      margin-bottom: 15px;
    }

    .faq-item button {
      width: 100%;
      background: #eff2f6;
      padding: 18px;
      text-align: left;
      border: none;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      transition: background 0.3s;
    }

    .faq-item button:hover {
      background: #e1e9f3;
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.4s ease;
      opacity: 0;
      background: white;
      padding: 0 15px;
      border-left: 4px solid #12B3BA;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .faq-content.open {
      opacity: 1;
      padding: 15px;
      max-height: 500px;
    }

    footer {
      background: linear-gradient(to right, #12B3BA, #163447);
      color: white;
      text-align: center;
      padding: 25px 20px;
    }

    .logo{
        width: 150px;
        height: auto;
        margin-bottom: 20px;     
    }