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

body {
    font-family: 'Lato', sans-serif;
    background-color: #F3F5F9;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background: #FFFFFF;
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image {
    width: 9rem;
    height: 9rem;
    margin-bottom: 1.5rem;
    border-radius: 100%;
    border: 3px solid #229FE6;
    padding: 0.25rem;
    background: #FFFFFF;
}

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

.name {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #616161;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #B3B3B3;
    line-height: 1.8;
}

.description.tagline {
    margin-top: 1rem;
}

.calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: #229FE6;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.calendly-btn:hover {
    background: #1a8ed0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 159, 230, 0.35);
}

.calendly-btn svg {
    flex-shrink: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: #FFFFFF;
    color: #616161;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #229FE6;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }

    .card {
        padding: 2rem;
        border-radius: 2rem;
    }

    .profile-image {
        width: 8rem;
        height: 8rem;
    }

    .name {
        font-size: 2em;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}
