@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-color: #F6F0FA;
    --text-color: #553C64;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
}

/* Hero */
.hero {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: -1px;
}

/* Content */
.content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px auto;
    flex-grow: 1;
}

.content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-bottom: 20px;
}

.footer-left .brand-name {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-right {
    text-align: right;
}

.footer-right h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-right a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .wrapper {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0 10px;
    }

    .content h2 {
        font-size: 2rem;
    }

    footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-right {
        text-align: left;
    }
}