﻿
.intro {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.products, .why-choose, .empowering, .testimonials, .order-process {
    margin: 40px 0;
}

    .products h2, .why-choose h2, .empowering h2, .testimonials h2, .order-process h2 {
        color: var(--primary-dark);
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .products ul, .why-choose ul {
        list-style-type: none;
        padding: 0;
    }

    .products li, .why-choose li {
        background-color: var(--primary-light);
        margin: 10px 0;
        padding: 15px;
        border-radius: 5px;
        font-size: 1rem;
        color: var(--text-dark);
    }

        .products li::before, .why-choose li::before {
            content: "✔";
            color: var(--accent-orange);
            margin-right: 10px;
        }

    .order-process ol {
        padding-left: 20px;
    }

    .order-process li {
        font-size: 1rem;
        color: var(--text-dark);
        margin: 10px 0;
        background-color: var(--primary-light);
        padding: 15px;
        border-radius: 5px;
    }

    .testimonials blockquote {
        background-color: var(--primary-light);
        padding: 20px;
        border-left: 5px solid var(--accent-orange);
        margin: 20px 0;
        font-style: italic;
        color: var(--text-dark);
        border-radius: 5px;
    }

    .testimonials cite {
        display: block;
        margin-top: 10px;
        color: var(--text-medium);
        font-weight: bold;
    }

.cta {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

    .cta-button:hover {
        background-color: var(--accent-blue);
    }
