/* ----------------------------
   General Styles
---------------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #2E7D32;
    transition: all 0.3s ease;
}

a:hover {
    color: #E6AC00; /* vivid gold hover */
    text-decoration: underline;
}

/* ----------------------------
   Hero Section
---------------------------- */
.hero {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

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

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

.btn-primary {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #FFC107; /* vivid gold */
    border: none;
    color: #212529;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #E6AC00; /* darker vivid gold hover */
    transform: translateY(-2px);
}

/* ----------------------------
   Features Section
---------------------------- */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2E7D32;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ----------------------------
   How It Works Section
---------------------------- */
img.img-fluid {
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ----------------------------
   Testimonials
---------------------------- */
.testimonial {
    background: #2E7D32;
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial::before {
    content: "“";
    font-size: 3rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
}

/* ----------------------------
   FAQ
---------------------------- */
.accordion-button {
    background-color: #e9ecef;
    color: #212529;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: #2E7D32;
    color: #fff;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button.collapsed {
    background-color: #FFC107;
}
/* ----------------------------
   Footer
---------------------------- */
footer {
    background-color: #2E7D32;
    color: #fff;
    padding: 30px 0;
    font-size: 0.9rem;
}

footer a {
    color: #FFC107; /* vivid gold */
    transition: all 0.3s ease;
}

footer a:hover {
    color: #E6AC00; /* hover vivid gold */
    text-decoration: underline;
}

/* Ensure the screenshot scales nicely on all devices */
.tool-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tool-screenshot:hover {
    transform: scale(1.02);
}

/* ----------------------------
   Mobile / Responsive
---------------------------- */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 60px 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .btn-primary {
        font-size: 1rem;
        padding: 10px 25px;
    }

    /* Features Section */
    .feature-icon {
        font-size: 2.5rem;
    }
    .card {
        padding: 15px;
    }

    /* How It Works Section */
    img.img-fluid {
        max-width: 100%;
        height: auto;
    }

    /* Testimonials */
    .testimonial {
        padding: 20px;
        font-size: 0.95rem;
    }
    .testimonial::before {
        font-size: 2.5rem;
        top: 5px;
        left: 10px;
    }

    /* FAQ */
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

/* Phones / smaller screens */
@media (max-width: 576px) {
    /* Hero */
    .hero {
        padding: 40px 10px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    .btn-primary {
        width: 100%;
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    /* Features Section */
    .card {
        padding: 12px;
        margin-bottom: 15px;
    }
    .feature-icon {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial {
        padding: 15px;
        font-size: 0.9rem;
    }
    .testimonial::before {
        font-size: 2rem;
        top: 5px;
        left: 10px;
    }

    /* FAQ / Accordion */
    .accordion-button {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    /* Footer */
    footer {
        padding: 20px 15px;
        font-size: 0.85rem;
        text-align: center;
    }

    /* Screenshots */
    .tool-screenshot {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
}
