:root {
    --primary: #fc3d23;
    --text-light: #ffffff;
    --text-dark: #1c1c1c;
    --card-bg: rgba(255, 255, 255, 0.07);
    --font: 'Segoe UI', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font);
    background: linear-gradient(to bottom, #0c1630, #0c1630);
    color: var(--text-light);
    font-family: "REM", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "REM", sans-serif;

}
.link {
    color: #fc3d23;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex: 1;
}

header {
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
}

header img {
    max-height: 40px;
}

.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}
.cta-button.last{
    display: none;
}

.cta-button a{
    color: white;
    text-decoration: none;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 64%;
    height: auto;
}

.claim {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 2rem 2rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    flex: 1 1 calc(33.333% - 1rem);
    box-sizing: border-box;
    color: var(--text-light);
    max-width: calc(33.333% - 1rem);
}

.card h3 {
    margin-top: 0.5rem;
}
footer {
    background: #0a1228;
    color: #ccc;
    padding: 1rem 0;
}

footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 0.8rem;
    text-align: center;
}
#cc-main .cm__btn--secondary {
    display: none !important;
}
#cc-main .cm__footer {
    display: none !important;
}

@media (max-width: 768px) {
    .claim {
        text-align: center;
    }
    header img {
        margin: auto;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-image img {
        content: url('../img/hero-girl-mobile.png');
        width: 100%;
        max-width: 320px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 100%;
    }
    .cta-button.last{
        display: unset;
    }
}
