* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.show-contacts-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #004080;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-family: 'Pavanam', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1.5rem;
}

.show-contacts-btn:hover {
    background-color: #003366;
}

.show-contacts-btn:active {
    background-color: #002244;
}

body {
    font-family: 'Pavanam', sans-serif;
    background-color: #eee6ea;
    color: #004080;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background-color: #eee6ea;
    border: 2px solid #ffffff;
    border-radius: 8px;
    box-shadow: 3px 3px 0px 0px rgba(165, 165, 165, 0.5);
    padding: 1rem;
    margin-bottom: 2rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: cover;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8125em;
    text-align: center;
    color: #004080;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.degree {
    font-size: 0.76em;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25em;
    text-align: center;
    color: #004080;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.description {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #004080;
    margin-bottom: 1rem;
}

.description .highlight {
    font-size: 1.0625em;
    display: block;
    margin: 0.5rem 0;
}

.description .methods {
    font-size: 0.9375em;
    display: block;
    margin: 0.3rem 0;
}

.contact-info {
    text-align: center;
    padding: 2rem 0;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1em;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #004080;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 64, 128, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Contact Buttons */
.contact-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    background-color: #004080;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    box-shadow: 3px 3px 0px 0px rgba(165, 165, 165, 0.5);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.9375em;
    letter-spacing: 0.01em;
    line-height: 1.5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px 0px rgba(165, 165, 165, 0.5);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    fill: #eee6ea;
}

/* Logo Section */
.logo-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 100%;
    max-width: 20rem;
    height: 11rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.1em;
    }

    .description .highlight {
        font-size: 1em;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.3em;
    }

    .description .methods {
        font-size: 0.875em;
    }

    .social-links a {
        width: 44px;
        height: 44px;
    }
}
