body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

.top-banner {
    background-color: #1e4ed9;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.header {
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    font-size: 22px;
}

.hero {
    position: relative;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 20px;
}

.hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
    height: 100%;
    color: white;
    box-sizing: border-box;
}

.hero-text {
    max-width: 50%;
}

.hero-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0;
}

.hero-text .tagline {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.hero-text .description {
    font-size: 16px;
    margin: 20px 0;
    max-width: 500px;
}

.consultation-btn {
    background-color: #1e4ed9;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form {
    background-color: white;
    color: black;
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 400px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    resize: none;
}

.contact-form textarea {
    height: 80px;
    border-radius: 20px;
}

.contact-form button {
    background-color: #1e4ed9;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .hero-content {

        align-items: flex-start;
    }

    .hero-text,
    .contact-form {
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        margin-top: 30px;
    }
}

.why-us {
    padding: 60px 20px;
    text-align: center;
}

.why-us-header .tag {
    display: inline-block;
    background-color: #e7ecff;
    color: #3d5afe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.why-us-header h2 {
    font-size: 36px;
    margin: 10px 0 5px;
}

.why-us-header p {
    color: #444;
    margin-bottom: 40px;
}

.why-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.why-us-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    object-fit: cover;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: left;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-container img {
    width: 30px;
    height: 30px;
}

.feature-box h3 {
    margin: 0;
    font-size: 18px;
}

.feature-box p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #444;
}

@media (max-width: 768px) {
    .why-us-content {
        flex-direction: column;
    }

    .why-us-image img {
        max-width: 100%;
    }
}

.testimonials {
    padding: 60px 20px;
    text-align: center;
}

.testimonials-header .tag {
    display: inline-block;
    background-color: #e7ecff;
    color: #3d5afe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.testimonials-header h2 {
    font-size: 36px;
    margin: 10px 0 5px;
}

.testimonials-header p {
    color: #444;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.75);
}

.testimonial-cards {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    box-sizing: border-box;
    align-items: start;
    justify-items: center;
}

.testimonial-card {
    background-color: white;
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.testimonial-card h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .testimonial-card {
        max-width: 100%;
    }
}

.values {
    padding: 60px 20px;
    text-align: center;
}

.values-header .tag {
    display: inline-block;
    background-color: #e7ecff;
    color: #3d5afe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.values-header h2 {
    font-size: 36px;
    margin: 10px 0 5px;
}

.values-header p {
    color: #444;
    margin-bottom: 40px;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.values-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.values-text {
    background: #fdfdfd;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    max-width: 540px;
}

.values-text p {
    margin-bottom: 15px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.footer a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    margin-left: 20px;
}

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

@media (max-width: 768px) {
    .values-content {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer a {
        margin-left: 10px;
    }
    .hero {
        overflow:visible;
    }
    .why-us {
        margin-top: 500px;
    }
}
.thank-you {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .thank-you h1 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
  }
  
  .btn-back {
    display: inline-block;
    background-color: #1e4ed9;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .btn-back:hover {
    background-color: #133bb5;
  }
  
  .cookie-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 20px;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .cookie-text {
    max-width: 600px;
  }
  
  .cookie-text h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
  }
  
  .cookie-text p {
    margin: 0;
    line-height: 1.5;
    color: #333;
  }
  
  .cookie-text a {
    color: #1e4ed9;
    text-decoration: underline;
  }
  
  .cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  .cookie-buttons .refuse-btn {
    background: none;
    border: none;
    color: #1e4ed9;
    font-weight: bold;
    cursor: pointer;
    text-align: right;
  }
  
  .cookie-buttons .accept-btn {
    background-color: #1e4ed9;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  @media (min-width: 768px) {
    .cookie-buttons {
      flex-direction: row;
      align-items: center;
      gap: 20px;
      margin-top: 0;
    }
  }
  