/* General Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FFC107;
    --dark-text: #333333;
    --light-background: #F5F5F5;
    --subtle-grey: #CCCCCC;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--dark-text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 80px 0;
    text-align: center;
}

/* Header */
.header {
    background-color: #fff;
    padding: 1px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 40px; /* Adjust as needed */
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: var(--dark-text);
    margin-bottom: 5px;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e0f7fa, #bbdefb); /* Light blue gradient */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn i {
    font-size: 1.2em;
    margin-right: 10px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.primary-btn:hover {
    background-color: #43A047; /* Darker green */
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: #fff;
}

.secondary-btn:hover {
    background-color: #1976D2; /* Darker blue */
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Features Section */
.features-section {
    background-color: #fff;
}

.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--light-background);
}

.how-it-works-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.step-card i {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    max-width: 500px;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card .user-info img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .user-info span {
    font-weight: 600;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #bbdefb, #e0f7fa); /* Light blue gradient */
    color: var(--dark-text);
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border: 1px solid var(--subtle-grey);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-background);
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 20px;
}

/* Call to Action Repeat Section */
.cta-section-repeat {
    background-color: #309133;
    color: #fff;
    padding: 80px 0;
}

.cta-section-repeat h2 {
    color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-section-repeat p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-media i {
    font-size: 1.8em;
    color: #fff;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-media i:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Responsiveness */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header .logo {
        margin-bottom: 15px;
    }

    .nav-list {
        display: none; /* Hide nav links by default on mobile */
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .nav-list.active {
        display: flex; /* Show when active */
    }

    .nav-list li {
        margin: 10px 0;
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .cta-buttons {
        justify-content: center;
    }

    .feature-grid, .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 90%;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer-links a {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }


    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2em;
    }
}