:root {
    --primary-color: #293b59;
    --secondary-color: #f8b400;
    --background-color: #f4f7f9;
    --text-color: #333;
    --light-text-color: #666;
    --white-color: #fff;
}

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    margin-left: 8px;
}

.site-nav a {
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: var(--secondary-color);
}

.cta-button {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background-color: #1a2a47;
}

/* Hero Section */
.hero-section {
    background: var(--background-color);
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--light-text-color);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-cta {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Steps Grid */
.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--background-color);
    margin-bottom: 20px;
}

.icon-circle .icon {
    width: 30px;
    height: 30px;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--background-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.benefit-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-small {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 20px;
    overflow: hidden;
    height: 200px; /* Fixed height for carousel */
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
}

.testimonial-card span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Final CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
    color: var(--white-color);
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 30px 20px;
}

.footer-links a {
    color: var(--white-color);
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
    }
    .site-nav {
        display: none; /* Hide for simplicity on mobile */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .steps-grid {
        flex-direction: column;
    }
}