:root {
    --primary-color: #2C3E50;
    /* Deep Blue/Slate */
    --accent-color: #D4AF37;
    /* Gold */
    --bg-color: #F9FAFB;
    /* Off-white */
    --text-color: #333333;
    --text-light: #666666;
    --card-bg: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 20%);
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

.profile-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--card-bg);
    background-color: #eee;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--accent-color);
    margin: 0 auto 30px;
}

.lead-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid var(--primary-color);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.card-content h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

.highlight {
    color: var(--text-color);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    width: 100%;
    max-width: 400px;
}

.cta-button i {
    font-size: 1.8rem;
}

.cta-button:hover {
    background-color: #20BA5C;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    .card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .card-content h3 {
        margin-bottom: 8px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}