@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 800;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype');
    font-weight: 100 900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1E2A38;
    background-color: #ffffff;
    line-height: 1.7;
}

/* HEADER */
header {
    background-color: #1E2A38;
    padding: 80px 40px;
}

.header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.header-tag {
    display: inline-block;
    background-color: #4BA3A7;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* MAIN */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

section {
    margin-bottom: 64px;
}

h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1E2A38;
}

p {
    font-size: 1rem;
    color: #444444;
    margin-bottom: 12px;
}

/* HIGHLIGHT SECTION */
.highlight {
    background-color: #f0f8f8;
    border-left: 4px solid #4BA3A7;
    padding: 36px;
    border-radius: 6px;
}

.highlight h2 {
    color: #1E2A38;
}

/* STEPS */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    background-color: #4BA3A7;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.step p {
    margin-bottom: 0;
}

/* LINKS */
a {
    color: #4BA3A7;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* BUTTON */
.cta-button {
    display: inline-block;
    background-color: #4BA3A7;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #1E2A38;
    text-decoration: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    font-size: 0.85rem;
    color: #999999;
    border-top: 1px solid #eeeeee;
}

/* MOBILE */
@media (max-width: 600px) {
    header {
        padding: 60px 24px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    main {
        padding: 40px 24px;
    }

    .highlight {
        padding: 24px;
    }
}
/* LOGO */
.logo {
    width: 280px;
    margin-bottom: 28px;
    display: block;
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.contact-form label {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1E2A38;
    margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1E2A38;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4BA3A7;
}

.contact-form button {
    margin-top: 16px;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}