:root {
    --primary-blue: #5865F2;
    --text-dark: #23272A;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-alt: #F6F6F6;
    --bg-footer: #23272A;
    --font-heading-hero: 'Luckiest Guy', cursive;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10;
}

.container-header {
    display: flex;
    justify-content: center;
}

.container-header {
    justify-content: flex-start;
}

.logo {
    height: 34px;
}

.hero-section {
    background-image: url('../imgs/Header.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 0px 0 0px;
    color: var(--text-light);
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading-hero);
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1;
}

.hero-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    width: 100%;
    max-width: 850px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-white {
    width: 205px;
    height: 44px;
    border-radius: 28px;
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-weight: 400;
}

.btn-white:hover {
    color: var(--primary-blue);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    width: 281px;
    height: 44px;
    border-radius: 28px;
    background-color: #23272A;
    color: #FFFFFF;
    font-weight: 400;
}

.btn-dark:hover {
    background-color: #36393f;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-section {
    padding: 50px 0;
    background-color: var(--bg-light);
}

.section-alt {
    background-color: var(--bg-alt);
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-content {
    width: auto;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 340px;
}

.section-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 350px;
}

.cta-section .section-text {
    max-width: 800px;
    width: 100%;
}

.cta-section {
    text-align: center;
    padding: 50px 0 0;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: var(--font-heading-hero);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    max-width: 800px;
}

.cta-image {
    margin-bottom: 50px;
}

.btn-brand {
    background-color: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 28px;
    font-size: 20px;
    font-weight: 500;
    width: auto;
    min-width: 250px;
}

.btn-brand:hover {
    background-color: #4752c4;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.main-footer {
    background-color: var(--bg-footer);
    height: 134px;
    display: flex;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.logo-footer {
    filter: brightness(0) invert(1);
    height: 63px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .container-header {
        justify-content: flex-start;
        padding-left: 24px;
    }

    .hero-section {
        text-align: left;
        background-position: center;
        padding: 80px 0;
        align-items: flex-start;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        font-size: 32px;
        max-width: 300px;
    }

    .hero-text {
        font-size: 16px;
        max-width: 381px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .btn-white,
    .btn-dark {
        width: 100%;
    }

    .feature-container {
        flex-direction: column;
        gap: 30px;
        text-align: left;
        align-items: flex-start;
    }

    .feature-reverse {
        flex-direction: column;
    }

    .feature-container .feature-image {
        order: 1;
    }

    .feature-container .feature-content {
        order: 2;
    }

    .section-title {
        font-size: 24px;
        text-align: left;
    }

    .section-text {
        font-size: 16px;
        text-align: left;
        max-width: 378px;
    }

    .cta-container {
        align-items: flex-start;
        text-align: left;
    }

    .cta-title {
        text-align: left;
    }

    .cta-text {
        text-align: left;
        max-width: 378px;
    }

    .cta-image {
        width: 100%;
    }
}