body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #fafafa;
    color: #111;
    line-height: 1.7;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.nav a:hover {
    opacity: 0.6;
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.hero p {
    color: #555;
    margin-bottom: 30px;
}

.cta {
    display: inline-block;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.cta:hover {
    opacity: 0.8;
}

/* Cards */
.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 30px;
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.card h2 {
    margin-bottom: 10px;
}

.card p {
    color: #555;
    margin-bottom: 20px;
}

.card a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

.card a:hover {
    opacity: 0.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 0.9rem;
}
