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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 1.5rem;
}

.lang-switch {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    width: 100%;
}

.lang-switch a {
    color: #999;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: all 0.2s;
}

.lang-switch a:hover {
    color: #333;
}

.lang-switch a.active {
    color: #333;
    font-weight: 500;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.image-section {
    flex: 0 0 auto;
}

.image-section img {
    width: 260px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-section {
    flex: 1;
}

h1 {
    font-size: 1.75rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.quote {
    font-style: italic;
    color: #777;
    border-top: 3px solid #c9a;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-primary {
    background: #333;
    color: #fff;
}

.btn-primary:hover {
    background: #555;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: #fff;
}

.coming-soon {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

@media (min-width: 600px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
    }

    .image-section img {
        width: 300px;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (min-width: 900px) {
    body {
        padding: 2rem;
    }

    .lang-switch {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: auto;
    }

    .container {
        flex-direction: row;
        gap: 4rem;
        text-align: left;
    }

    .image-section img {
        width: 380px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .bio {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .quote {
        border-top: none;
        padding-top: 0;
        border-left: 3px solid #c9a;
        padding-left: 1rem;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .buttons {
        justify-content: flex-start;
    }

    .coming-soon {
        margin-top: 2rem;
    }
}
