body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fdf6f0;
    color: #3a3a3a;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

main {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.profile-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.profile-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
}

.profile-row p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.profile-row a {
    color: #a8577e;
    text-decoration: none;
    font-weight: 600;
}

.profile-row a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}
