* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #f5f7fb;
    line-height: 1.6;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.hero {
    padding: 80px 0;
    color: white;
    background: linear-gradient(135deg, #183153, #2774ae);
}

.brand {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

.hero h1 {
    max-width: 700px;
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
}

.hero p {
    max-width: 650px;
    margin-bottom: 32px;
    font-size: 20px;
}

.primary-button {
    display: inline-block;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    background: #ffcf33;
    color: #172033;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.steps {
    padding: 70px 0;
    background: white;
}

.steps h2,
.schedule-section h2 {
    margin-top: 0;
    font-size: 34px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 26px;
    border: 1px solid #dde3ec;
    border-radius: 12px;
}

.step-card span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #2774ae;
    color: white;
    font-weight: 700;
}

.schedule-section {
    padding: 70px 0;
}

.form-container {
    max-width: 850px;
    padding: 40px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 40px rgba(16, 34, 58, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.field {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

label {
    margin-bottom: 7px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #b8c2d0;
    border-radius: 7px;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2774ae;
    border-color: transparent;
}

.error {
    margin-top: 4px;
    color: #b42318;
}

.submit-button {
    margin-top: 26px;
}

footer {
    padding: 25px 0;
    background: #172033;
    color: white;
    text-align: center;
}

.success-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 25px;
}

.success-card {
    width: min(600px, 100%);
    padding: 45px;
    border-radius: 16px;
    background: white;
    text-align: center;
    box-shadow: 0 12px 40px rgba(16, 34, 58, 0.1);
}

.checkmark {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    background: #e8f7ee;
    color: #198754;
    font-size: 38px;
    font-weight: 700;
}

.confirmation-details {
    margin: 28px 0;
    padding: 20px;
    border-radius: 10px;
    background: #f5f7fb;
    text-align: left;
}

@media (max-width: 700px) {
    .hero {
        padding: 55px 0;
    }

    .step-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .form-container {
        width: 94%;
        padding: 25px;
    }
}

.top-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 70px;
}

.top-navigation .brand {
    margin: 0;
    color: white;
    text-decoration: none;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector label {
    margin: 0;
    color: white;
    font-size: 14px;
}

.language-selector select {
    width: auto;
    min-width: 150px;
    padding: 9px 34px 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 7px;
    background: white;
    color: #172033;
    cursor: pointer;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin-bottom: 12px;
    color: #ffdf73;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-description,
.section-description {
    max-width: 700px;
}

.form-heading {
    margin-bottom: 25px;
}

.success-brand {
    display: inline-block;
    margin-bottom: 25px;
    color: #183153;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.confirmation-note {
    margin-bottom: 28px;
}

@media (max-width: 700px) {
    .top-navigation {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 45px;
    }

    .language-selector {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .language-selector select {
        width: 100%;
    }
}
