* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0074e4;
    display: inline-block;
}

.nav {
    display: flex;
    gap: 20px;
    float: right;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-icon {
    display: none;
}

/* Hero section */
.hero {
    position: relative;
    text-align: left;
    color: #fff;
}

.hero-bg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 10%;
    max-width: 600px;
}

.hero-subtitle {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-text {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #0074e4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
}

.about {
    padding: 60px 0;
    background: #f9f9f9;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-subtitle {
    color: #0074e4;
    font-size: 14px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 28px;
    margin: 15px 0;
}

.btn.blue {
    background-color: #2979ff;
}

/* Timeline section */
.timeline {
    background: #fff;
    padding: 60px 0;
}

.timeline-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.timeline-item {
    background: #f3f6fb;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

.timeline-item h3 {
    color: #2979ff;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-icon {
        display: inline-block;
        float: right;
    }

    .about-grid,
    .timeline-grid {
        flex-direction: column;
    }

    .hero-content {
        position: static;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
    }

    .hero h1 {
        font-size: 24px;
    }
}

.features {
    background: #f7f8fa;
    padding: 60px 0;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.features-header .subtitle {
    color: #0074e4;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.features-header h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.features-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-image {
    width: 100%;
    border-radius: 10px;
}

.features-boxes {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    padding: 0 5%;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.feature-box .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value {
    background: #fff;
    padding: 60px 0;
}

.value-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.value-img img {
    width: 100%;
    border-radius: 12px;
}

.value-text h2 {
    font-size: 28px;
    margin: 10px 0 20px;
}

.value-text ul {
    list-style: none;
    padding: 0;
}

.value-text ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .features-boxes {
        position: static;
        transform: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .features-image {
        margin-bottom: 20px;
    }

    .value-grid {
        flex-direction: column;
    }
}

.contact {
    background: #fff;
    padding: 60px 20px;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: #dff0ff;
    border: 2px solid #298fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.full {
    width: 100%;
}

.footer {
    background: #298fff;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left h3 {
    margin-bottom: 10px;
}

.footer-left p {
    max-width: 400px;
    margin-bottom: 20px;
}

.socials a {
    margin-right: 10px;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}

.footer-right p {
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

html {
    scroll-behavior: smooth !important;
}

.thank-you {
    background: #fff;
    padding: 80px 0;
  }
  
  .thank-you-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .thank-you-text {
    flex: 1;
    min-width: 280px;
  }
  
  .thank-you-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #444;
  }
  
  .thank-you-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
  }
  
  .thank-you-img img {
    max-width: 100%;
    border-radius: 24px;
  }
  
  @media (max-width: 768px) {
    .thank-you-grid {
      flex-direction: column;
      text-align: center;
    }
  
    .thank-you-text h2 {
      font-size: 24px;
    }
  }
  