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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0A1A2F;
    background-color: #f5f7fb;
    line-height: 1.6;
}

.hero {
    background: radial-gradient(circle at top, #28C6B8 0, #0A1A2F 55%, #050b14 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px 90px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background-color: #28C6B8;
    color: #0A1A2F;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-primary:hover {
    opacity: 0.9;
}

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

.section.alt {
    background-color: #e9f2ff;
    border-radius: 24px;
    margin-top: 40px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: center;
    color: #0A1A2F;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 0.98rem;
    color: rgba(10,26,47,0.85);
}

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

.card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefits {
    list-style: none;
    max-width: 800px;
    margin: 10px auto 0;
}

.benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(10,26,47,0.15);
}

.benefits li:last-child {
    border-bottom: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 18px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #28C6B8;
    color: #0A1A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact a {
    color: #28C6B8;
    text-decoration: none;
}

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

.contact-form {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid rgba(10,26,47,0.2);
    font-size: 0.95rem;
}

contact-form textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.form-status {
    font-size: 0.85rem;
    margin-top: 6px;
}

.form-status.success {
    color: #1b8f5a;
}

.form-status.error {
    color: #c0392b;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: rgba(10,26,47,0.7);
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .section {
        padding: 40px 16px;
    }
}
