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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f2f4f7;
    padding: 60px 20px;
    color: #1a1a1a;
}

/* Main container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Title styles */
h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* Modern grid link list */
.links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Link cards */
.links li a {
    display: block;
    background: #f9fafb;
    padding: 18px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #005fcc;
    border: 1px solid #e3e6ea;
    transition: all 0.25s ease;
}

/* Hover interaction */
.links li a:hover {
    background: #005fcc;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 95, 204, 0.25);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .container {
        padding: 30px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }
}
