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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F9F7F2; /* Warm paper background - Doodle theme */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    color: #2C3E50; /* Ink Blue/Black - Doodle theme */
}

/* Doodle font for headings */
h1 {
    font-family: 'Patrick Hand', cursive;
}

.container {
    width: 100%;
    max-width: 650px;
    animation: fadeIn 0.6s ease-out;
}

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

.card {
    background: #FFFFFF; /* Surface - Doodle theme */
    border: 3px solid #2C3E50; /* Dark border for "ink" look - Doodle theme */
    border-radius: 20px; /* Slightly less rounded for doodle look */
    box-shadow: 
        0 8px 16px rgba(44, 62, 80, 0.15),
        0 0 0 1px rgba(44, 62, 80, 0.1);
    overflow: hidden;
    position: relative;
}

/* Doodle-style decorative elements */
.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF6B6B; /* Primary - Pastel Red/Coral */
    border-radius: 2px;
    z-index: 1;
}

.header {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%); /* Primary gradient - Doodle theme */
    padding: 40px 30px;
    text-align: center;
    color: white;
    border-bottom: 3px solid #2C3E50; /* Dark border - Doodle theme */
    position: relative;
}

.icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon svg {
    width: 36px;
    height: 36px;
}

.header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.content {
    padding: 30px;
}

.section {
    margin-bottom: 28px;
}

.section:last-child {
    margin-bottom: 0;
}

.section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50; /* Ink Blue/Black - Doodle theme */
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%); /* Primary to Secondary - Doodle theme */
    border-radius: 2px;
}

.highlight-box {
    background: linear-gradient(135deg, #F0EFE9 0%, #FFFFFF 100%); /* Surface highlight - Doodle theme */
    border: 2px solid #2C3E50; /* Dark border - Doodle theme */
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

.highlight-text {
    font-size: 1.1rem;
    color: #2C3E50; /* Ink Blue/Black - Doodle theme */
}

.highlight-text strong {
    color: #FF6B6B; /* Primary - Pastel Red/Coral */
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #F0EFE9; /* Surface highlight - Doodle theme */
    border: 2px solid #2C3E50; /* Dark border - Doodle theme */
    border-radius: 12px;
    transition: all 0.2s ease;
}

.list li:hover {
    background: #FFFFFF;
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.15);
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6BCB77 0%, #4ECDC4 100%); /* Success to Secondary - Doodle theme */
    color: white;
    border: 2px solid #2C3E50; /* Dark border - Doodle theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(44, 62, 80, 0.2);
}

.contact-text {
    color: #7F8C8D; /* Text secondary - Doodle theme */
    margin-bottom: 14px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%); /* Primary gradient - Doodle theme */
    color: white;
    text-decoration: none;
    border: 2px solid #2C3E50; /* Dark border - Doodle theme */
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 62, 80, 0.3);
    background: linear-gradient(135deg, #EE5A5A 0%, #FF6B6B 100%);
}

.email-icon {
    width: 20px;
    height: 20px;
}

.footer {
    padding: 20px 30px;
    background: #F0EFE9; /* Surface highlight - Doodle theme */
    border-top: 3px solid #2C3E50; /* Dark border - Doodle theme */
    text-align: center;
}

.footer p {
    color: #7F8C8D; /* Text secondary - Doodle theme */
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Links styling - Doodle theme */
a {
    color: #FF6B6B; /* Primary - Pastel Red/Coral */
    text-decoration: underline;
    text-decoration-color: #4ECDC4; /* Secondary - Pastel Teal */
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

a:hover {
    color: #EE5A5A;
    text-decoration-color: #FF6B6B;
}

/* Additional doodle-style details */
.section p {
    color: #2C3E50; /* Ink Blue/Black - Doodle theme */
    margin-bottom: 12px;
}

.section p strong {
    color: #FF6B6B; /* Primary - Pastel Red/Coral */
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .content {
        padding: 24px 20px;
    }

    .highlight-box {
        padding: 20px;
    }

    .highlight-text {
        font-size: 1rem;
    }

    .list li {
        padding: 12px 14px;
    }

    .email-link {
        width: 100%;
        justify-content: center;
    }
}
