body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(to right, #f5f5f5, #e0e0e0);
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    max-width: 160px;
    margin: 0 auto 30px;
}

.portrait {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin: 30px auto;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    padding: 12px 20px;
    text-decoration: none;
    background-color: #dc2743;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #a51e31;
}

.button.outline {
    background-color: transparent;
    border: 2px solid #dc2743;
    color: #dc2743;
}

.button.outline:hover {
    background-color: #dc2743;
    color: #fff;
}

footer {
    background-color: #f5f5f5;
    color: #666;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.95rem;
    border-top: 1px solid #ddd;
}

footer a {
    color: #cc2366;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

footer a:active {
    color: #dc2743;
}
