:root {
    --brand: #7b2beb;
    --text: #333333;
    --bg: #ffffff;
    --font-sans: "Bricolage Grotesque", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.container {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    padding: 2rem;
}


.title {
    font-size: 60px;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: 30px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
    text-align: justify;
}

.image-section {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(123, 43, 235, 0.15);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f8f8;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #7B2BEB;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #7B2BEB;
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .image-section {
        order: -1;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .page {
        padding: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .text {
        font-size: 1rem;
        text-align: left;
    }

    .image-section {
        min-height: 300px;
    }
}