/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f0; /* Consistent light background */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0056B3;
    text-align: center;
    margin-bottom: 20px;
}

p {
    text-align: center;
    margin-bottom: 15px;
}

.btn {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 15px 30px;
    background-color: #20C997;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #17a77d;
}

/* Header */
header {
    background-color: #0056B3;
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Hero Section */
#hero {
    background-color: #f4f8fb;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero .hero-image {
    max-width: 90%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #0056B3;
    line-height: 1.2;
}

#hero h2 {
    font-size: 2em;
    color: #555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#hero p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #666;
}

/* Problem/Solution Section */
#problem-solution {
    padding: 80px 0;
    background-color: #fff;
}

#problem-solution h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
}

#problem-solution p {
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-size: 1.15em;
    color: #444;
}

/* How It Works Section */
#how-it-works {
    background-color: #f4f8fb;
    padding: 80px 0;
}

#how-it-works h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.process-steps .step {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(25% - 40px);
    min-width: 280px;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-steps .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.process-steps .step img {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.process-steps .step h3 {
    font-size: 1.6em;
    color: #0056B3;
    margin-bottom: 15px;
}

.process-steps .step p {
    font-size: 1em;
    color: #666;
}

.features-benefits {
    margin-top: 80px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-benefits h3 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
}

.features-benefits ul {
    list-style: none;
    padding: 0;
}

.features-benefits ul li {
    background-color: #e6f2ff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 6px solid #0056B3;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

#why-choose-us h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
}

#why-choose-us p {
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.15em;
    color: #444;
}

.value-propositions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.value-propositions .prop {
    background-color: #f4f8fb;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(50% - 40px);
    min-width: 350px;
    max-width: 550px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-propositions .prop:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.value-propositions .prop img {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.value-propositions .prop h3 {
    font-size: 1.8em;
    color: #0056B3;
    margin-bottom: 15px;
}

.value-propositions .prop p {
    font-size: 1em;
    color: #666;
}

/* FAQ Section */
#faq {
    background-color: #f4f8fb;
    padding: 80px 0;
}

#faq h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer; /* Indicate it's clickable */
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #e6f2ff;
}

.faq-item h3 {
    font-size: 1.5em;
    color: #0056B3;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #20C997;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    font-size: 1.05em;
    color: #555;
    text-align: left;
    display: none; /* Hidden by default */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.faq-item.active p {
    display: block; /* Show when active */
}

/* CTA Bottom Section */
#cta-bottom {
    background-color: #0056B3;
    color: white;
    padding: 80px 0;
    text-align: center;
}

#cta-bottom h2 {
    color: white;
    font-size: 3em;
    margin-bottom: 40px;
}

#cta-bottom .btn {
    background-color: #20C997;
    color: white;
    font-size: 1.2em;
    padding: 18px 35px;
}

#cta-bottom .btn:hover {
    background-color: #17a77d;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 0.95em;
}

footer p {
    margin-bottom: 15px;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #20C997;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.8em;
    }

    #hero h2 {
        font-size: 1.6em;
    }

    .process-steps .step,
    .value-propositions .prop {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px 0;
    }

    #hero h1 {
        font-size: 2.2em;
    }

    #hero h2 {
        font-size: 1.3em;
    }

    #hero p {
        font-size: 1em;
    }

    #problem-solution h2,
    #how-it-works h2,
    #why-choose-us h2,
    #faq h2 {
        font-size: 2em;
    }

    .process-steps .step,
    .value-propositions .prop {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .features-benefits ul li {
        font-size: 1em;
    }

    #cta-bottom h2 {
        font-size: 2em;
    }

    .faq-item h3 {
        font-size: 1.3em;
    }

    .faq-item p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    header .logo {
        font-size: 1.8em;
    }

    #hero h1 {
        font-size: 1.8em;
    }

    #hero h2 {
        font-size: 1.1em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .process-steps .step,
    .value-propositions .prop {
        padding: 25px;
    }

    .faq-item {
        padding: 20px;
    }
}

