/* Modern Clean Design - Tailwind Inspired */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background: #f9fafb;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 32px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #DE7223;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.flag {
    font-size: 2rem;
    line-height: 1;
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.card p {
    font-size: 0.938rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

footer p {
    font-size: 0.875rem;
    color: #6b7280;
}

footer a {
    color: #DE7223;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #c5611d;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }

    header {
        margin-bottom: 40px;
    }

    .logo {
        max-width: 140px;
        margin-bottom: 24px;
    }

    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cards {
        gap: 16px;
    }

    .card {
        padding: 24px 20px;
    }

    .flag {
        font-size: 1.75rem;
    }

    .card h2 {
        font-size: 1.25rem;
    }

    .card p {
        font-size: 0.875rem;
    }

    footer {
        margin-top: 48px;
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.75rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}
