
* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 70px 0;
    text-align: center;
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
    margin: 0 0 15px;
    letter-spacing: 3px;
}

.subtitle {
    color: #aaa;
    font-size: 20px;
    margin-bottom: 45px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: auto;
}

.person-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 20px;
    border-radius: 16px;
    background: #1e1e1e;
    border: 1px solid #333;
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    transition: 0.2s;
}

.person-button:hover {
    transform: translateY(-5px);
    background: #292929;
    border-color: #666;
}

.card {
    max-width: 800px;
    margin: 30px auto;
    padding: 50px 30px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 20px;
}

.card h2 {
    font-size: 50px;
    margin-top: 0;
}

.back {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 24px;
    border-radius: 10px;
    background: white;
    color: #111;
    text-decoration: none;
    font-weight: bold;
}

.back:hover {
    opacity: 0.85;
}

@media (max-width: 700px) {
    .buttons {
        grid-template-columns: 1fr;
    }

}
.image-gopia {
    width: 300px;
    max-width: 100%;
    margin: 30px auto;
    border-radius: 20px;
}

.image-gopia.petite {
    width: 300px;
}