:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --background-color: #f4f6f8;
    --text-color: #333;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 600px;
    max-width: 600px;
    margin: 10vh auto;
    /* Centers vertically relative to viewport height */
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

#quiz-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 0;
    /* Override default margin */
}

.hidden {
    display: none !important;
}

/* --- INTRO SCREEN STYLES --- */
#intro-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {

    #intro-container,
    #quiz-container,
    #loading-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 10vh auto;
        padding-bottom: 50px;
        /* Ensure space at bottom */
    }
}

.intro-logo {
    max-width: 300px;
    /* Increased from 120px for better visibility */
    width: 100%;
    /* Ensure it scales down on smaller screens */
    margin-bottom: 20px;
    height: auto;
}

.intro-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c4170c;
    /* G1 Red */
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.pulse-btn {
    animation: pulse-red 2s infinite;
    background-color: #27ae60;
    /* Green button for action */
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* --- QUIZ STYLES --- */

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: var(--gray-light);
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

.question-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.question-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: left;
    color: var(--text-color);
}

.option-btn:hover {
    border-color: var(--primary-color);
    background-color: #f0fff4;
    transform: translateY(-2px);
}

/* --- LOADING SCREEN STYLES --- */

#loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    margin: 0;
}

.spinner {
    border: 5px solid var(--gray-light);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--primary-dark);
}

/* --- SALES PAGE STYLES --- */

#sales-page-container {
    background-color: var(--white);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* --- HERO SECTION MODIFIED --- */

.hero-section {
    padding: 0 !important;
    /* Force no padding on container to let top bar span full width */
    background: transparent;
    text-align: center;
    position: relative;
}

.white-hero {
    background-color: #ffffff;
    color: #333;
}

.top-green-bar {
    background-color: #00e600;
    /* Vibrant Green */
    color: #000;
    padding: 15px 20px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    width: 100%;
}

.hero-content {
    padding: 30px 20px 40px 20px;
    /* Reduced vertical padding */
    max-width: 1000px;
    margin: 0 auto;
}

.headline-dark {
    font-size: 1.8rem;
    /* Significantly reduced from 2.8rem */
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin-bottom: 15px;
    /* Reduced margin */
    letter-spacing: -0.5px;
}

.subheadline-gray {
    font-size: 1rem;
    /* Slightly reduced */
    color: #666;
    margin-bottom: 25px;
    /* Reduced margin */
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .cta-button {
    background-color: #00e600;
    color: #000;
    max-width: 400px;
    margin: 30px auto 0 auto;
    /* Added top margin for spacing below video */
    display: block;
    /* Ensure it behaves as a block for centering */
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0, 230, 0, 0.4);
}

.hero-content .cta-button:hover {
    transform: translateY(-3px);
}

/* --- VSL VIDEO STYLES --- */
.vsl-container {
    margin-top: 50px;
    /* Reduced spacing */
    width: 100%;
    max-width: 720px;
    /* Increased width */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 20px;
    z-index: 10;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 5px solid #ffffff;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vsl-subtext {
    margin-top: 20px;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vsl-subtext::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
    animation: pulse-green 2s infinite;
}

/* --- SOLUTION SECTION --- */
.solution-section {
    background-color: #fff;
    padding: 40px 20px 20px 20px;
    /* Reduced vertical padding significantly */
}

/* --- FEATURES SECTION ADJUSTMENT --- */
.features {
    padding-top: 0 !important;
    /* Remove top padding to close gap with solution */
}

.center-text {
    text-align: center;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.solution-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.solution-subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.5;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    line-height: 1.4;
}

.solution-list li span {
    font-size: 1.2rem;
}

.solution-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.solution-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.solution-img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .solution-grid {
        flex-direction: column-reverse;
        /* Text on top on mobile, usually better, or user prefers image first? Let's keep standard stacking */
        text-align: center;
    }

    .solution-list li {
        justify-content: flex-start;
        /* Keep list left aligned usually better for reading */
        text-align: left;
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* --- NEWS IMPACT SECTION --- */

.news-impact {
    background-color: #1b4d3e;
    /* Dark Green specific to the image */
    color: white;
    padding: 80px 20px;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* G1 Card Styles */
.news-card {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* News font */
}

.news-header {
    background-color: #c4170c;
    /* G1 Red */
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: bold;
}

.menu-icon,
.search-icon {
    font-size: 1.2rem;
    cursor: pointer;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: -2px;
}

.category {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    flex-grow: 1;
    /* Push search to right */
    text-align: center;
}

.news-subheader {
    background-color: #a3120a;
    /* Darker Red */
    color: white;
    padding: 8px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.news-body {
    padding: 30px;
    color: #333;
    text-align: left;
}

.news-body h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.news-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Impact Text Styles */
.impact-text {
    max-width: 500px;
    text-align: left;
}

.impact-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-green {
    color: #2ecc71;
    font-weight: 800;
}

.impact-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.pain-list,
.gain-list {
    list-style: none;
    margin: 20px 0;
}

.pain-list li,
.gain-list li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pain-list li strong,
.gain-list li strong {
    color: #e74c3c;
}

.quote-text {
    font-style: italic;
    border-left: 3px solid #2ecc71;
    padding-left: 15px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

/*Shared Styles*/

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.1;
}

.highlight-white {
    background-color: white;
    color: #0d3b2e;
    padding: 2px 10px;
}

.section {
    padding: 60px 20px;
}

.pain-solution {
    text-align: center;
}

.pain-solution h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.highlight-box {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--background-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    /* Flexbox to stack content */
    flex-direction: column;
    align-items: center;
}

.feature-img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing {
    background-color: #f9f9f9;
    text-align: center;
    padding-top: 10px;
    /* Reduced to bring timer closer to testimonials */
}

/* --- PRICING GRID SYSTEM --- */

/* --- SCARCITY TIMER --- */
.scarcity-timer-container {
    background-color: #fff0f0;
    /* Light red bg */
    color: #c0392b;
    padding: 15px 30px;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    max-width: 400px;
    margin: 0 auto 30px auto;
    border: 2px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
    animation: pulse-red 2s infinite;
}

.timer-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c0392b;
}

.timer-display {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: monospace;
    line-height: 1;
    color: #e74c3c;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    /* Make cards same height */
    flex-wrap: wrap;
    margin-top: 40px;
}

.price-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}



.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Pushes footer down */
}

.sub-title {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

/* --- BASIC CARD STYLES --- */

.basic-card {
    border: 1px solid #e0e0e0;
}

.basic-list li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.icon-check {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
    background: #eaffee;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.basic-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    margin: 5px 0;
}

/* --- EXCLUSIVE CARD STYLES --- */

.exclusive-card {
    border: 2px solid #f1c40f;
    transform: scale(1.02);
    /* Slightly larger */
    z-index: 2;
}

/* --- REDESIGNED PRICING HEADERS --- */

.card-header {
    padding: 25px 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.basic-header {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    position: relative;
    overflow: hidden;
}

.basic-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
}

.exclusive-header {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
    color: #fff;
    padding: 30px 20px;
    /* Slightly larger header for exclusive */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    margin-bottom: -15px;
    /* Pull body up slightly */
    padding-bottom: 40px;
    /* Compensate for clip-path */
}

.best-seller-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.exclusive-list li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.bonus-list {
    margin-top: 20px;
    border-top: 2px dashed #f1c40f;
    padding-top: 20px;
    list-style: none;
}

.bonus-list li {
    background: #fff9db;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #d35400;
    font-weight: 600;
}

.icon-star {
    font-size: 1.2rem;
}

.highlight-text {
    color: #e74c3c;
    font-weight: bold;
}

.price-box {
    background: #fffdf5;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #fceeb5;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.old-price-strike {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1.1rem;
}

.exclusive-price {
    font-size: 3rem;
    font-weight: 800;
    color: #f39c12;
}

.discount-pill {
    background: #f39c12;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* --- COMMON BUTTONS & FOOTER --- */

.cta-button {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.basic-btn {
    background-color: #27ae60;
    color: white;
}

.basic-btn:hover {
    background-color: #219150;
    transform: translateY(-3px);
}

.exclusive-btn {
    background: linear-gradient(to bottom, #f1c40f, #f39c12);
    color: white;
    font-size: 1.1rem;
}

.exclusive-btn:hover {
    background: linear-gradient(to bottom, #f39c12, #e67e22);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.small-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #7f8c8d;
    letter-spacing: 1px;
}

.secure-badge {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #f0fff4;
    padding: 8px;
    border-radius: 6px;
}

/* --- NEW GUARANTEE SECTION --- */
.guarantee-section-new {
    background-color: #0d3b2e;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-content-new {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.guarantee-seal-new {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.seal-number-new {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.seal-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: center;
}

.seal-days-new {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.seal-guarantee-new {
    font-size: 0.65rem;
    background: #0d3b2e;
    color: #f1c40f;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-info {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.guarantee-info h3 {
    color: #f1c40f;
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.guarantee-info p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 500;
}

@media (min-width: 768px) {
    .guarantee-content-new {
        text-align: left;
        flex-wrap: nowrap;
        padding: 50px;
    }

    .guarantee-info {
        text-align: left;
    }
}

/* --- FAQ SECTION --- */

.faq-section {
    background-color: #082820;
    /* Very Dark Green */
    color: white;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item[open] {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    /* Remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }

    .container {
        margin: 20px;
        padding: 15px;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.testimonials .section-title {
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #27ae60;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-info strong {
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: #888;
}