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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    margin-right: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    color: #1a3c6e;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1a3c6e;
}

.btn-small {
    background: #1a3c6e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edfa 100%);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #f9a825;
}

.tagline {
    font-size: 20px;
    font-weight: 600;
    color: #1a3c6e;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1a3c6e;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #0f2a4a;
}

.btn-secondary {
    background: #f9a825;
    color: #1a3c6e;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #e69900;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Stats */
.stats {
    background: #1a3c6e;
    color: #fff;
    padding: 40px 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.8;
}

/* Who It's For */
.who-for {
    padding: 60px 0;
    text-align: center;
}

.who-for h2 {
    font-size: 32px;
    color: #1a3c6e;
    margin-bottom: 40px;
}

.for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.for-item {
    background: #f5f8ff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.for-item:hover {
    transform: translateY(-5px);
}

.for-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* Features */
.features {
    padding: 60px 0;
    background: #f5f8ff;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    color: #1a3c6e;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card h3 {
    color: #1a3c6e;
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.feature-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f9a825;
    font-weight: bold;
}

.feature-card.highlight {
    border: 2px solid #f9a825;
    background: #fffdf5;
}

/* Why Us */
.why-us {
    padding: 60px 0;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    color: #1a3c6e;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit {
    background: #f5f8ff;
    padding: 25px;
    border-radius: 12px;
}

.benefit h4 {
    color: #1a3c6e;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Testimonial */
.testimonial {
    background: #1a3c6e;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 22px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f9a825, #f57f17);
    padding: 50px 0;
    text-align: center;
    color: #1a3c6e;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-section .btn-primary {
    background: #1a3c6e;
    color: #fff;
}

.cta-section .btn-primary:hover {
    background: #0f2a4a;
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-about h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-about a {
    color: #f9a825;
    text-decoration: none;
}

.footer-links h4,
.footer-features h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links ul,
.footer-features ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-features ul li {
    padding: 3px 0;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #f9a825;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .stats .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-box {
        flex: 1 1 45%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}