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

html {
    font-size: 20px;
}

body {
    background-color: #F4F5F9;
    color: #111;
    font-family: "Brandon Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-image: linear-gradient(135deg, #F56E20, #EB3D41);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    width: 260px;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.card p {
    font-size: 0.85rem;
    color: #888;
}

.card .badge {
    display: inline-block;
    background: linear-gradient(135deg, #F56E20, #EB3D41);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-weight: 500;
}

.footer {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.8rem;
}

.footer a {
    color: #EB3D41;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
