/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Header */
header {
    background: #1a237e;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 15px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffca28;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #3949ab 60%, #1a237e 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.08);
    text-align: center;
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 28px;
}

/* Button */
.button {
    display: inline-block;
    background: #ffca28;
    color: #222;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255,202,40,0.12);
    transition: background 0.2s, color 0.2s;
}
.button:hover {
    background: #ffd54f;
    color: #1a237e;
}

/* Sections */
section {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(60,64,67,0.07);
    padding: 32px 0;
}
section h3 {
    font-size: 1.4rem;
    color: #1a237e;
    margin-bottom: 16px;
    font-weight: 700;
}
section ul {
    margin-left: 20px;
    margin-bottom: 12px;
}
section ul li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Testimonials */
.testimonial blockquote {
    background: #f1f8e9;
    border-left: 5px solid #ffca28;
    margin-bottom: 18px;
    padding: 16px 24px;
    border-radius: 8px;
    font-style: italic;
    color: #333;
}
.testimonial span {
    display: block;
    margin-top: 8px;
    color: #1a237e;
    font-weight: 500;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(90deg, #ffca28 60%, #fffde7 100%);
    color: #222;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,202,40,0.07);
}
.contact-cta h3 {
    color: #1a237e;
}

/* Footer */
footer {
    background: #1a237e;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    border-radius: 0 0 12px 12px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 700px) {
    .container {
        width: 98%;
        padding: 12px 0;
    }
    nav ul {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }
    .hero {
        padding: 32px 0 24px 0;
    }
    section {
        padding: 18px 0;
    }
}