/* --- VARIABLES & RESET --- */
:root {
    --primary-color: #2a3f54; /* Dark blue-grey */
    --primary-light: #3e5c7a;
    --accent-color: #1abc9c; /* Subtle emerald accent */
    --text-dark: #333333;
    --text-light: #f4f7f6;
    --bg-light: #f9fbfb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(42, 63, 84, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Updated Body Font */
body {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 17px; /* Bumped slightly for better readability with serif */
}

/* Headings inherit the body font naturally now, but we'll keep the color declaration */
h1, h2, h3, h4, .logo {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); color: var(--text-light); }
.bg-dark h2 { color: var(--white); }

/* --- NAVIGATION --- */
.navbar {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* --- BUTTONS --- */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2632 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.subheading {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- SOCIAL PROOF --- */
.social-proof {
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.social-proof p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* --- SECTION GENERAL --- */
section { padding: 100px 0; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

/* --- GRIDS --- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- CARDS (Features) --- */
.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 63, 84, 0.12);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* --- HOW IT WORKS (Steps) --- */
.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    font-family: Georgia, serif;
}

.step h3 { margin-bottom: 15px; }

/* --- EMPLOYER BENEFITS --- */
.employer-benefits {
    text-align: center;
}

.employer-content {
    max-width: 800px;
    margin: 0 auto;
}

.employer-content .lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.benefit-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.benefit-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e6ed 100%);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

/* --- FOOTER --- */
.footer {
    background-color: #1a2632;
    color: #a0aab5;
    padding: 80px 0 30px 0;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-links ul { list-style: none; }
.footer-links a {
    color: #a0aab5;
    text-decoration: none;
    transition: var(--transition);
    line-height: 2;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .nav-links { display: none; /* In a real app, add a hamburger menu */ }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; }
}