@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eef1f7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

header h2 {
    color: #003366;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

header p {
    color: #555;
    margin-bottom: 25px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.icon {
    font-size: 40px;
    color: #0077cc;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #0077cc;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    background: #005fa3;
}

/* disabled / coming soon */
.disabled {
    opacity: 0.5;
    pointer-events: none;
}

footer {
    font-size: 13px;
    color: #555;
    margin-top: 20px;
}
