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

html {
    height: 100%;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem; /* 12px equivalent */
    font-weight: normal;
    color: #333;
    background: #FFFFFF;
    background-image: linear-gradient(180deg, rgba(245,246,252,0.00) 0%, #F5F6FC 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.04), 0 12px 40px -18px rgba(0,0,0,0.40);
    padding: 36px 100px 28px;
    text-align: center;
    width: fit-content;
    min-width: 200px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    margin-bottom: 12px;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-logo {
    margin-bottom: 4px;
}

.brand-logo img {
    height: auto;
    width: 220px;
}

.subtitle {
    margin-bottom: 60px;
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.services span {
    white-space: nowrap;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-icons a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    padding: 4px;
}

.contact-icons a:hover {
    color: #0077b5;
}

.icon-link img {
    display: block;
    width: 16px;
    height: 16px;
}

.icon-link.linkedin img {
    width: 15px;
    height: 15px;
}


footer {
    text-align: center;
    padding: 20px;
    color: #626264;
    font-size: 0.75rem;
    color: #999;
}

footer p {
    margin: 0;
}

@media (max-width: 480px) {
    .card {
        padding: 48px 20px 40px;
    }

    .subtitle {
        margin-bottom: 80px;
    }

    .services {
        flex-direction: column;
        gap: 10px;
    }
    .services span {
        white-space: normal;
        max-width: 70%;
    }
    footer {
        max-width: 80vw;
    }
}
