/* General Setup and Variables */
:root {
    --primary-green: #16a34a; /* A vibrant green like in the image */
    --banner-yellow: #facc15;
    --text-color: #333;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --brand-purple: #5A67D8;
}
.logo img{
    width: 380px;
    height: 57px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex
    ;
        align-items: center;
        /* justify-content: center; */
        gap: 1rem;
}

a {
    text-decoration: none;
}

/* Header */
.site-header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-purple);
}

/* Yellow Banners */
.yellow-banner {
    background-color: var(--banner-yellow);
    text-align: center;
    padding: 15px 20px;
    font-size: 1.1rem;
}

.yellow-banner p {
    margin: 0;
}

/* Hero Section */
.hero-section {
    padding: 30px 0;
    background-color: var(--light-gray);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.qualify-list {
    list-style: none;
    margin-bottom: 25px;
}

.qualify-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.checkmark {
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: #fff;
    padding: 18px 30px;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #148a3f;
}

.stats {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
    color: #555;
}

.stats .number {
    color: #f43f5e;
}

.secondary-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #555;
    text-decoration: underline;
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Social Proof Section */
.social-proof-section {
    padding: 40px 0;
    text-align: center;
}

.trustpilot-review {
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-direction: column;
}

.trustpilot-review h3 {
    font-size: 1.5rem;
}

.stars {
    font-size: 1.8rem;
    color: var(--primary-green);
    letter-spacing: 2px;
}


.rated-by {
    margin-top: 5px;
    color: #555;
    font-size: 1.2rem;
}

.media-logos {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.media-logos img {
   
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    background-color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-card {
    text-align: left;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.yellow-stars {
    color: #facc15;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Before/After Section */
.before-after-section {
    padding-bottom: 40px;
}

.before-after-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 30px;
}



.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.emoji {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Final CTA Section */
.final-cta-section {
    background-color: var(--light-gray);
    padding: 50px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.final-cta-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

.final-cta-section .cta-button {
    max-width: 400px;
}

/* Footer */
.site-footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    background-color: #fff;
}


/* --- Responsive Design --- */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }

    .qualify-list li {
        font-size: 1.2rem;
    }
    
    .before-after-container {
        flex-direction: column;
        align-items: center;
    }

    .media-logos {
        gap: 30px;
    }
    
   
    .trustpilot-review img{
        width: 400px;
    }
    .container.trustpilot-reviews{
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        text-align: center;
    }
    .media-logos img{
        width: 400px;
    }
    .yellow-banner {
        font-size: 2rem;
    }
}