:root {

--primary: #5b8cff;
--accent: #7f5cff;
--background: #f8faff;
--text: #1f2937;
--muted: #6b7280;

--radius: 16px;

}

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

body {
font-family: "Inter", sans-serif;
background: var(--background);
color: var(--text);
line-height: 1.7;
}

.nav {
background: white;
border-bottom: 1px solid #eee;
position: sticky;
top: 0;
}

.nav-container {
max-width: 1100px;
margin: auto;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-weight: 800;
font-size: 24px;
}

nav a {
margin-left: 24px;
text-decoration: none;
font-weight: 600;
color: var(--muted);
}

nav a:hover {
color: var(--primary);
}

.active {
color: var(--primary);
}

.hero {
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
padding: 60px 20px;
background:
linear-gradient(
120deg,
#eef2ff,
#ffffff
);
}

.hero-content {
max-width: 700px;
text-align: center;
}

.hero h2 {
font-size: 48px;
margin-bottom: 15px;
}

.tagline {
font-size: 22px;
margin-bottom: 30px;
}

.primary-btn {
background: linear-gradient(
120deg,
var(--primary),
var(--accent)
);
color: white;
padding: 14px 26px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
}

.primary-btn:hover {
transform: translateY(-2px);
}

.page-hero {
text-align: center;
padding: 60px 20px;
}

.page-hero h2 {
font-size: 40px;
margin-bottom: 10px;
}

.page-hero p {
color: var(--muted);
}

.card {
max-width: 750px;
margin: auto;
background: white;
padding: 40px;
border-radius: var(--radius);
margin-bottom: 40px;
box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.card h3 {
font-size: 30px;
margin-bottom: 20px;
}

.card p {
margin-bottom: 18px;
font-size: 18px;
}

strong {
color: var(--primary);
}

footer {
text-align: center;
padding: 30px;
color: var(--muted);
}

@media (max-width: 700px) {

.hero h2 {
font-size: 34px;
}

.tagline {
font-size: 18px;
}

.card {
padding: 30px 20px;
}

}