/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Variables extracted from image analysis */
    /* Backgrounds */
    --bg-dark: #1F2430;
    /* Adjusted Deep Slate Blue */
    --bg-feature-box: rgba(43, 52, 70, 0.95);
    /* Lighter box background */
    --border-feature: #3A4456;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-orange: #FF914D;
    /* Softer Bright Orange */
    --text-peach: #FFBCA3;
    /* Peach tone */
    --text-green: #3DDC84;
    /* Bright Green highlight */

    /* Elements */
    --badge-bg: #FF6B00;
    --btn-green: #10C658;
    /* Vivid Green Button */
    --btn-green-hover: #15D963;
    --check-green: #10C658;

    /* Spacing */
    --container-width: 1100px;
    --font-primary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.3;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--text-orange);
}

.text-peach {
    color: var(--text-peach);
}

.text-green {
    color: var(--text-green);
}

/* Hero Section */
.hero {
    padding: 20px 0 40px;
    /* Reduced padding */
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.badge {
    background-color: var(--badge-bg);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    /* Slightly smaller */
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    /* Reduced margin */
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* Typography */
.hero h1 {
    font-size: 2.2rem;
    /* Reduced from 3rem */
    font-weight: 800;
    line-height: 1.1;
    /* Tighter line height */
    margin-bottom: 15px;
    /* Reduced margin */
    max-width: 800px;
}

.hero p.subtitle {
    font-size: 1rem;
    /* Slightly smaller */
    max-width: 700px;
    margin: 0 auto 20px;
    /* Significantly reduced margin */
    color: #e0e0e0;
}

/* Main Image */
.hero-image-container {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 800px;
    /* Slightly constrained */
    z-index: 2;
}

/* Feature Grid Box */
.feature-box {
    background-color: var(--bg-feature-box);
    border: 1px solid var(--border-feature);
    border-radius: 10px;
    padding: 25px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #d1d5db;
}

.feature-item svg {
    flex-shrink: 0;
    fill: var(--check-green);
    width: 24px;
    height: 24px;
}

/* CTA Button */
.btn-primary {
    background-color: var(--btn-green);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(16, 198, 88, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 198, 88, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Smaller for mobile */
        padding: 0 10px;
    }

    .hero p.subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    .feature-box {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }

    .btn-primary {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }
}

/* Section 2: Gallery Carousel */
.gallery-section {
    background-color: white;
    padding: 60px 0 40px;
    color: var(--bg-dark);
    /* Dark text for white bg */
    text-align: center;
    overflow: hidden;
    /* Hide scrollbar for carousel */
}

.gallery-title {
    font-size: 1.8rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.3;
}

.gallery-title .highlight {
    color: var(--badge-bg);
    /* Orange */
}

/* Carousel Container */
.carousel-container {
    display: flex;
    width: 200%;
    /* Make room for sliding */
    animation: slide 20s linear infinite;
    gap: 20px;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    /* Fixed width for consistency */
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Slide half the width (original set) */
}

/* Scroll Down Indicator */
.scroll-indicator {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.down-arrow {
    background-color: var(--badge-bg);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    cursor: pointer;
    animation: bounce 2s infinite;
    /* Constant bounce effect */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.4rem;
        padding: 0 20px;
    }

    .carousel-item {
        width: 250px;
        height: 350px;
    }

    /* Audience Section Mobile */
    .audience-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    /* Deliverables Mobile */
    .deliverables-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ... (previous styles) ... */

/* Section 4: What You Get (Deliverables) */
.deliverables-section {
    background-color: white;
    /* Clean white background */
    padding: 80px 0;
    text-align: center;
}

.deliverables-title {
    color: #1E2330;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.deliverable-card {
    background-color: white;
    border: 1px solid #FFD0A8;
    /* Subtle orange border */
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.deliverable-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.deliverable-content {
    padding: 20px;
}

.deliverable-text {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Section 3: Target Audience */
.audience-section {
    background-color: #F8F9FA;
    /* Light gray background */
    padding: 80px 0;
    text-align: center;
}

.audience-title {
    color: #1E2330;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.audience-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ECEFF1;
    /* Light grey circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
    color: #2D3648;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-title {
    color: #1E2330;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-text {
    color: #6B7280;
    /* Muted text */
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Section 5: Access Features */
.access-section {
    background-color: var(--bg-dark);
    /* Reusing the dark blue */
    padding: 80px 0;
    text-align: center;
    color: white;
}

.access-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    display: flex;
    /* Flexbox for centering with icon */
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    gap: 10px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.access-card {
    background-color: rgba(255, 255, 255, 0.1);
    /* Glass effect */
    border: 1px solid rgba(255, 145, 77, 0.3);
    /* Subtle orange border */
    border-radius: 15px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.access-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF914D, #FF6B00);
    /* Orange Gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

/* Fix for SVG icons */
.access-icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    display: block;
    /* Remove inline spacing */
}

.access-card h3 {
    color: var(--text-peach);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.access-card p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .access-title {
        flex-direction: column;
        /* Stack title and icon on mobile */
        font-size: 1.5rem;
    }
}

/* Section 6: Testimonials */
.testimonials-section {
    background-color: #F8F9FA;
    padding: 80px 0;
    text-align: center;
}

.testimonials-title {
    color: #1E2330;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Updated Card Design */
.testimonial-card {
    background-color: white;
    border-radius: 20px;
    /* Rounded card corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    padding: 20px;
    /* Padding for the frame effect */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-img-wrapper {
    width: 100%;
    height: 200px;
    background-color: #eee;
    border-radius: 12px;
    /* Rounded image corners */
    overflow: hidden;
    margin-bottom: 20px;
    /* Space below image */
}

.testimonial-house-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 0;
    /* Removed padding, handled by parent card */
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.user-details h4 {
    color: #1E2330;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-details span {
    display: block;
    color: #888;
    font-size: 0.75rem;
}

.stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        flex-direction: column;
        font-size: 1.5rem;
    }
}

/* Section 7: Bonuses */
.bonuses-section {
    background-color: #FFF8E7;
    /* Light cream/beige */
    padding: 80px 0;
    text-align: center;
}

.bonuses-title {
    color: #1E2330;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bonuses-subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bonus-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFE0B2;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.bonus-icon-box {
    width: 45px;
    height: 45px;
    background-color: #FF6B00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.bonus-icon-box svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.bonus-badge {
    background-color: #FF6B00;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
}

.bonus-card h3 {
    color: #1E2330;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.bonus-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bonus-value {
    color: #FF6B00;
    font-weight: 800;
    font-size: 1rem;
}

/* Total Card Special Style */
.bonus-card.total-card {
    background-color: #FFE0B2;
    /* Light orange */
    align-items: center;
    text-align: center;
    border: 2px solid white;
    justify-content: center;
}

.total-card .bonus-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(230, 81, 0, 0.2);
}

.total-card .bonus-badge {
    margin-bottom: 15px;
    background-color: #E65100;
    /* Darker orange */
}

.total-price-label {
    color: #1E2330;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.total-price {
    color: #E65100;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.total-free {
    color: #1E2330;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 8: Pricing / Offer */
.pricing-section {
    background-color: white;
    padding: 60px 0 80px;
    text-align: center;
}

.pricing-title {
    color: #008f39;
    /* Green title */
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.pricing-card {
    background-color: #1F2430;
    /* Dark Blue */
    border: 3px solid #10C658;
    /* Green Border */
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pricing-badge-popular {
    background-color: #10C658;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 30px;
    border-radius: 0 0 10px 10px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-image-container {
    padding: 50px 20px 20px;
    background: radial-gradient(circle at center, #2a3449 0%, #1F2430 70%);
}

.pricing-subheader {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pricing-features-list {
    padding: 0 30px;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-check {
    fill: #10C658;
}

.icon-gift {
    fill: #FF914D;
}

.price-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 30px 30px;
    padding: 20px;
}

.price-label {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-old {
    background-color: #723b47;
    /* Reddish background for strikethrough effect like screenshot */
    color: #ffcccc;
    text-decoration: line-through;
    padding: 5px 20px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.price-new {
    color: #10C658;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 20px rgba(16, 198, 88, 0.3);
}

.pricing-cta {
    padding: 0 30px;
    margin-bottom: 25px;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0.8;
}

.payment-icon {
    height: 25px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .price-new {
        font-size: 3rem;
    }
}

/* Section 9: Guarantee */
.guarantee-section {
    background-color: #E8F5E9;
    /* Very light green background */
    padding: 80px 0;
    text-align: center;
}

.guarantee-card {
    background-color: white;
    border-radius: 20px;
    max-width: 800px;
    /* Wider card */
    margin: 0 auto;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #C8E6C9;
    /* Subtle green border */
}

.guarantee-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-badge-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.guarantee-title-block {
    text-align: left;
}

.guarantee-title {
    color: #1F2430;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.guarantee-subtitle {
    color: #10C658;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.guarantee-text-box {
    background-color: #E8F5E9;
    /* Light green box matching section bg */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.6;
}

.guarantee-text-box strong {
    color: #1F2430;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #10C658;
    stroke-width: 2;
}

.guarantee-btn-container .btn-primary {
    width: 100%;
    max-width: 500px;
    justify-content: center;
    font-size: 1.3rem;
    padding: 20px;
}

@media (max-width: 768px) {
    .guarantee-header {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-title-block {
        text-align: center;
    }

    .security-badges {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

/* Section 10: FAQ */
.faq-section {
    background-color: #FFF8E7;
    /* Light cream background */
    padding: 60px 0;
}

.faq-title {
    color: #1F2430;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item details {
    padding: 20px;
    cursor: pointer;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #374151;
    font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    font-size: 1.2rem;
}

.faq-chevron {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.faq-item details[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 15px;
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 35px;
    /* Indent to align with text */
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
}

.faq-cta-container {
    text-align: center;
    margin-top: 50px;
}

.btn-large-orange {
    background-color: #FF6B00;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 15px 50px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-large-orange:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

/* Sales Notification Toast */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-left: 5px solid #10C658;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 320px;
    font-family: 'Montserrat', sans-serif;
}

.sales-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background-color: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
    fill: #10C658;
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-name {
    font-weight: 700;
    color: #1F2430;
    font-size: 0.95rem;
}

.notification-text {
    font-size: 0.85rem;
    color: #6B7280;
}

.notification-time {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 2px;
}

@media (max-width: 480px) {
    .sales-notification {
        left: 10px;
        right: 10px;
        /* Full width on mobile */
        bottom: 10px;
        max-width: none;
    }
}