@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        .container {
            max-width: 760px;
            margin: 0 auto;
        }
        h1 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 3rem;
            color: #111827;
            letter-spacing: -0.025em;
        }
        
        h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-top: 1.75rem;
            margin-bottom: 0.75rem;
            color: #4b5563;
        }
        p {
            margin-bottom: 1.25rem;
            text-align: left;
        }

.contact-card {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    text-align: left;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item .label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

        @media (max-width: 640px) {
            body {
                padding: 40px 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.25rem;
            }
        }

        /* Lists */
        ul.check-list { list-style: none; padding: 0; }
        ul.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-muted); }
        ul.check-list li::before {
            content: '\2713'; position: absolute; left: 0; top: 0; color: #059669;
            font-weight: bold; background: #d1fae5; width: 20px; height: 20px;
            display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px;
        }
        