/* Global Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-background: #fffcf4;
    /* Clean white background */
    --secondary-background: #896470;
    /* Very light pink for alternating sections */
    --text-color: #896470;
    /* Dark gray for excellent readability */
    --text-light: #6B7280;
    /* Light gray for secondary text */
    --accent-cta: #d66172;
    /* Professional pink for CTAs */
    --accent-cta-hover: #d66172;
    /* Darker pink for hover states */
    --accent-secondary: #F472B6;
    /* Light pink for accents */
    --border-color: #E5E7EB;
    /* Light gray borders */
    --success-green: #10B981;
    /* Modern green for success states */
    --highlight-color: #D4AF37;
    /* Deep pink for highlights */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(236, 72, 153, 0.2);

    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-headline: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    background-color: var(--primary-background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Blob Styles Commented Out
.blob-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    overflow: hidden; 
}

.blob {
    position: absolute;
    opacity: 0.5; 
}

.blob1 {
    width: 450px;
    height: 450px;
    background-color: var(--blob-color-1);
    top: -150px;
    right: -150px;
    border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
    transform: rotate(30deg);
}

.blob2 {
    width: 550px;
    height: 550px;
    background-color: var(--blob-color-2);
    bottom: -200px;
    left: -200px;
    border-radius: 65% 45% 55% 60% / 50% 60% 40% 55%;
    transform: rotate(-15deg);
}

.blob3 {
    width: 350px;
    height: 350px;
    background-color: var(--blob-color-3);
    top: 20%;
    left: 30%;
    border-radius: 40% 60% 70% 50% / 50% 70% 60% 40%;
    transform: rotate(10deg) translate(-50%, -50%);
    opacity: 0.3; 
}
*/

/* Basic Section Styling */
.section {
    padding: 60px 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;        
}

/* Alternating section backgrounds */
.section:nth-child(even) {
    background-color: var(--primary-background);
    color: var(--text-color) !important;
}

.section:nth-child(odd) {
    background-color: var(--secondary-background);
    color: #fffcf4 !important;
}





.section.animate-from-bottom {
    transform: translateY(30px);
}

.section.animate-from-left {
    transform: translateX(-40px);
    /* A bit more offset for horizontal */
}

.section.animate-from-right {
    transform: translateX(40px);
    /* A bit more offset for horizontal */
}

/* Logo container styling */
.logo-container {
    background-color: #693a48;
    padding: 5px 0;
    text-align: center;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

h1,
h2 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    line-height: 1.2;
    /* Changed from --secondary-accent to --text-color for visibility */
}

h1 {
    font-size: 2.5em;
    /* Adjust as needed */
}

h2 {
    font-size: 2em;
    /* Adjust as needed */
}

.highlight {
    color: var(--highlight-color);
    background-image: linear-gradient(to bottom, #f9d14e, #d0990d);
    font-weight: 700;
    background-size: 100%;
    background-repeat: repeat;

    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cta) 0%, var(--accent-cta-hover) 100%);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-strong);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    /* Added for vertical alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensure text is centered horizontally as well */
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-cta-hover) 0%, var(--highlight-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-strong);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.logo-container img {
    max-width: 120px;
    height: auto;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* Add other styles from your page below or integrate them */
/* For example, specific styles for hero-section, comparison-section, etc. */

.hero-section {
    padding: 10px 25px 20px;
    /*    background: linear-gradient(135deg, white 0%, var(--primary-background) 100%); */
    text-align: center;

    background-color: #222222;
}

.underline {
    text-decoration: underline;
}

.hero-image {
    max-width: 95%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    max-height: 350px;
    margin: 24px auto;
    display: block;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 450px;
    margin: 32px auto 40px;
}

.hero-benefits li {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-section .cta-button {
    display: inline-block;
    margin-top: 8px;
    padding: 20px 40px;
    font-size: 1.1rem;
    max-width: 80%;
    text-align: center;
}

/* Hero Section Specifics */
.hero-section .intro-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1 !important;
    margin-bottom: 24px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fffcf4;
}

.hero-section .sub-headline {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #fffcf4;
    font-weight: 500;
    text-align: center;
}

.hero-section ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 400px;
    /* From inline style */
    margin: 20px auto;
    /* From inline style */
    color: rgb(255, 255, 255)
}

.hero-section ul li {
    margin-bottom: 10px;
    /* From inline style */
}

.icon.check,
.icon.cross {
    margin-right: 8px;
}

.icon.check .fa-check {
    color: var(--success-green);
    /* background: rgba(16, 185, 129, 0.1); */
    padding: 4px;
    border-radius: 50%;
    font-size: 0.9em;
}

/* Goldmine Section Styles */
.goldmine-section {
    text-align: center;
}

.goldmine-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.goldmine-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.goldmine-content h3 {
    text-align: center;
    font-size: 1.8rem;
    margin: 40px 0 24px;
}

.collar-image {
    max-width: 80%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px var(--shadow-medium);
    display: block;
    margin: 32px auto;
}

.price-reveal {
    margin: 32px 0;
}

.price-question {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.price-answer {
    font-size: 1.2rem;
}

.testimonial-quote {
    background: var(--secondary-background);
    border-left: 4px solid var(--accent-cta);
    margin: 40px 0;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-light);
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 4px;
    color: var(--primary-background);
}

.testimonial-quote footer {
    text-align: right;
    font-weight: 600;
    color: var(--primary-background);
    font-style: normal;
}

.final-cta-text {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px;
}





/* Comparison Section */
.comparison-section .comparison-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.comparison-section .comparison-column {
    background-color: var(--secondary-background);
    /* Changed to dark background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    /* Ensures columns don't get too squished */
}

.comparison-section .comparison-column h3 {
    color: var(--text-color);
    /* Changed to light text color */
    margin-top: 0;
}

.comparison-section .comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-section .comparison-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    text-align: left;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-3px);
}

.market-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.market-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Certificate Section */
.certificate-section img {
    /* Use main accent color for border */
    padding: 5px;
}

/* Bonus Section */
.bonus-section .bonus-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.bonus-section .bonus-item {
    background: var(--primary-background);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color);
}

.bonus-section .bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Commenting out old .bonus-icon styles
.bonus-section .bonus-item .bonus-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}
*/

.bonus-section .bonus-item .bonus-image {
    max-width: 200px;
    /* Adjust as needed for thumbnail size */
    height: auto;
    border-radius: 8px;
    /* Match card rounding */
    margin-bottom: 15px;
    /* Space below image */
    display: block;
    /* Ensure it's a block element for margin auto to work if needed */
    margin-left: auto;
    /* Center the image if its max-width is less than container */
    margin-right: auto;
    /* Center the image */
}

.bonus-section .bonus-item h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.bonus-section .bonus-item p:last-child {
    margin-top: 10px;
    font-weight: bold;
}


/* Pricing Section */
.price-section {

    margin: 0 auto;
}

.price-section .price-box {
    margin: 40px auto;
    padding: 40px;
    border: 2px solid var(--accent-cta);
    border-radius: 24px;
    background: var(--primary-background);
    box-shadow: 0 20px 50px var(--shadow-medium);
    color: var(--text-color);
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.price-section .price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cta), var(--highlight-color));
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.price-features .icon.check {
    margin-right: 12px;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 8px;
}

.sale-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-cta);
    text-align: center;
    margin: 16px 0;
}

.urgency-text {
    font-size: 1.2rem;
    color: #DC2626;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.description-text {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.full-width-cta {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    font-size: 1.1rem;
}

.payment-methods {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    display: block;
    margin: 0 auto;
}

.secure-text {
    margin-top: 16px;
    text-align: center;
    color: var(--success-green);
    font-size: 1rem;
}

.access-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}




/* FAQ Section */
.faq-section .faq-container {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.faq-section .faq-item {
    background: var(--primary-background);
    margin-bottom: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-section .faq-question-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);    
}

.faq-section .faq-question-toggle:hover {
    opacity: 0.8;
}

.faq-section .faq-question-toggle::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.2s ease;
}

.faq-section .faq-item.active .faq-question-toggle::after {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    padding: 0 24px 20px;
    display: none;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-section .faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta-section .section-content {
    text-align: center;
    /* From inline style */
    padding-bottom: 40px;
    /* From inline style */
}

.final-cta-section .small-text {
    margin-top: 10px;
    /* From inline style */
    font-size: 0.9em;
}

/* Footer */
footer {
    background: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .hero-section {
        padding: 20px 20px 20px;
    }

    .hero-section .intro-headline {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-section .cta-button {
        padding: 18px 32px;
        font-size: 1rem;
        max-width: 350px;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .bonus-grid-container,
    .guarantee-items-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 3px;
    }

    .content-card {
        padding: 24px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 16px;
    }


    .hero-section {
        padding: 5px 16px 10px;
    }

    .hero-section .intro-headline {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-section .sub-headline {
        font-size: 1.1rem;
    }

    .hero-section .cta-button {
        padding: 16px 28px;
        font-size: 0.95rem;
        max-width: 320px;
    }

    .hero-benefits {
        max-width: 400px;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 0.9rem;
    }

    .price-section .price-box {
        padding: 24px;
        margin: 24px auto;
    }

    .bonus-section .bonus-item,
    .guarantee-item {
        padding: 24px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: -2px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .faq-section .faq-question-toggle {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .faq-section .faq-answer {
        padding: 0 20px 16px;
    }

    .collar-image {
        max-width: 100%;
    }

    .testimonial-quote {
        padding: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-section .price-box {
        padding: 32px 24px;
    }

    .sale-price {
        font-size: 2.4rem;
    }
}

/* Image Gallery Section */
.gallery-grid img {
    max-width: 100%;
    /* Ensure images scale down and don't cause overflow */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 12px;
    /* More rounded gallery images */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 600px;
    /* Adjust as needed */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-slide-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
    /* ADDED for spacing between images */
}

.carousel-image {
    width: 250px;
    /* ADDED fixed width */
    flex-shrink: 0;
    /* ADDED to prevent shrinking */
    height: 350px;
    /* UPDATED height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    /* ADDED for aesthetics */
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: white;
}

/* Screenshot Carousel Styles */
.screenshot-carousel-container {
    position: relative;
    max-width: 720px;
    /* Example: Good width for 16:9, like 720p */
    margin: 30px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--secondary-background);
    /* Optional: for contrast if needed */
}

.screenshot-carousel-slide-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.screenshot-carousel-image {
    width: 100%;
    /* CHANGED from min-width ensure it scales to container width */
    max-width: 100%;
    /* ADDED to ensure it doesn't exceed container if natural size is larger */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra space below image */
    flex-shrink: 0;
    /* Prevent shrinking in the flex container */
    /* background-color: #000; Removed as it was mostly for letterboxing with contain */
}

.screenshot-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.screenshot-carousel-button.prev {
    left: 15px;
}

.screenshot-carousel-button.next {
    right: 15px;
}

.screenshot-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.screenshot-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.screenshot-carousel-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* Subtle border for better visibility */
}

.screenshot-carousel-dot.active {
    background-color: var(--accent-cta);
    transform: scale(1.1);
    /* Slightly larger active dot */
}

/* Timeline Journey Section Styles */
.timeline-container {
    position: relative;
    margin-top: 30px;
    padding: 20px 0;
    /* The main timeline pseudo-element will be here */
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 40px;
    /* Adjust based on timeline-marker size and desired position */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-background);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    /* Space between timeline items */
    padding-left: 80px;
    /* Space for the marker and line */
    opacity: 0;
    transform: translateY(30px);
    /* Start 30px down for a bottom-up effect */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, transition-delay 0s;
    /* Added transition-delay for JS override */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    /* (40px from container edge) - (width of marker / 2) + (half of line width) -> approx */
    top: 0;
    /* Align with the start of the content, adjust as needed */
    z-index: 1;
}

.timeline-number {
    width: 45px;
    height: 45px;
    background-color: #222222;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    font-weight: bold;
    border: 3px solid var(--highlight-color);
    /* Creates a visual separation from the line */
}

.timeline-content {
    position: relative;
    background-color: var(--primary-background);
    padding: 24px;   
    padding-top: 0px;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light);
    border: 1px solid white;
    text-align: left;
}

.timeline-title {
    margin: 0 0 15px 0;
    padding-top: 10px;
    font-size: 1.6em;
    font-weight: 700;
    color: #693a48;
}

.timeline-details,
.timeline-description {
    color: var(--text-color);
    margin: 0;
    padding-left: 0;
    /* Remove default ul padding */
    list-style: none;
    /* Remove default list bullets if ul */
}

.timeline-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    /* Align icon and start of text to the top */
    overflow: hidden;
    /* ADDED to help contain text flow */
}

.timeline-details li:last-child {
    margin-bottom: 0;
}

.timeline-details i.fas.fa-check-circle,
.timeline-description i.fas.fa-check-circle {
    color: var(--highlight-color);
    margin-right: 12px;
    font-size: 1.1em;
    flex-shrink: 0;    
    padding: 3px;
    border-radius: 50%;
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 25px;
        /* Adjust line position for smaller screens */
    }

    .timeline-item {
        padding-left: 60px;
        /* Adjust padding for items */
    }

    .timeline-marker {
        left: 3px;
        /* Adjust marker position */
    }

    .timeline-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: -2px;
        /* Fine-tune for very small screens */
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .timeline-title {
        font-size: 1.3em;
    }

    .timeline-content {
        padding: 15px;
    }
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Testimonials Section Styles */
.testimonials-section {
    /* background-color: var(--secondary-background); Optional: if a slightly different bg is desired */
    /* padding-top: 50px; */
    /* Already handled by .section */
    /* padding-bottom: 50px; */
}

.testimonial-intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    margin: 15px auto 30px auto;
    /* Top, auto, bottom, auto */
}

.testimonial-intro-text span {
    /* text-decoration: underline;  Handled by inline style in HTML */
    /* font-weight: bold; Handled by inline style in HTML */
    color: var(--highlight-color);
    /* Make the highlighted part stand out more if needed */
}

.testimonial-carousel-container {
    position: relative;
    max-width: 500px;
    /* Adjust as testimonial images might be taller */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); Optional shadow */
}

.testimonial-carousel-slide-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-carousel-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    border-radius: 8px;
    /* Rounded corners for the image itself */
}

.testimonial-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-carousel-button.prev {
    left: 10px;
}

.testimonial-carousel-button.next {
    right: 10px;
}

.testimonial-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.testimonial-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.testimonial-carousel-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-carousel-dot.active {
    background-color: white;
}

/* Guarantee Section Styles */
.guarantee-section {
    /* padding-top: 50px; */
    /* General section padding is already applied */
    /* padding-bottom: 50px; */
}

.guarantee-section h2 {
    margin-bottom: 15px;
}

.guarantee-section .section-content>p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 750px;
    /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
}

.guarantee-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Space between guarantee items */
    margin-top: 40px;
    text-align: left;
    /* Align text to the left within each item */
}

.guarantee-item {
    background-color: var(--primary-background);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
}

.guarantee-icon {
    width: 60px;
    /* Adjust size as needed */
    height: 60px;
    margin-bottom: 20px;
    fill: var(--accent-cta);
    /* Color for the SVG icon */
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-title {
    font-family: var(--font-headline);
    color: var(--accent-cta);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.guarantee-description {
    color: var(--text-color);
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.guarantee-description strong {
    /* text-decoration: underline; Handled by inline styles */
    color: var(--text-color);
    /* Ensure strong tag text is also light */
}

/* Section Scroll Animations */
.section.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
    /* Reset both X and Y transforms */
}

/* Optional: Add a slight delay to animations for a staggered effect if desired */
/* This can be done per section if you have specific IDs or by nth-child if structure allows */
/* Example for very specific sections - not universally applied here */
/* 
#market-opportunity-section.is-visible {
    transition-delay: 0.1s;
}
#goldmine-section.is-visible {
    transition-delay: 0.2s;
} 
*/

/* Pulsating CTA Button Animation */
@keyframes pulsate-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        /* Match existing cta-button shadow */
    }

    50% {
        transform: scale(1.03);
        /* Subtle scale up */
        box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35);
        /* Enhanced shadow with gold accent */
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Target specific CTA buttons leading to the offer page */
a.cta-button.pulsating-button {
    animation: pulsate-cta 2.5s infinite ease-in-out;
    /* Ensure the transform origin is center for scaling */
    transform-origin: center;
}

@keyframes pulsate-large {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        /* Reduced scale for a gentler pulse */
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulsating {
    animation: pulsate-large 1.5s infinite ease-in-out;
    /* Ensure the transform origin is center for scaling */
    transform-origin: center;
}

/* Ensure hover effect still works smoothly if transform is applied */
/* No specific change needed here unless the animation conflicts, which it shouldn't */

/* CTA Button Loading State */
.cta-button.is-loading {
    position: relative;
    /* Needed for spinner positioning */
    color: transparent !important;
    /* Hide original text by making it transparent */
    pointer-events: none;
    /* Prevent further clicks while loading */
    cursor: wait;
    /* Show wait cursor */
}

.cta-button.is-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    /* Spinner size */
    height: 20px;
    /* Spinner size */
    margin-left: -10px;
    /* Half of width */
    margin-top: -10px;
    /* Half of height */
    border: 3px solid rgba(255, 255, 255, 0.3);
    /* Light border for the track */
    border-top-color: #ffffff;
    /* Color of the spinner itself */
    border-radius: 50%;
    animation: cta-spinner 0.8s linear infinite;
}

@keyframes cta-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Pulsating seats animation */
@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        /* Reduced scale for a gentler pulse */
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulsate-seats {
    display: inline-block;
    /* Allows transform to work */
    animation: pulsate 2s infinite ease-in-out;
    /* Faster animation */
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.4em;
    /* Made the number bigger */
}

/* Styles for the scroll arrow */
.scroll-arrow {
    display: inline-block; /* Ensures transform behaves correctly */
    width: 50px; /* Adjust size as needed */
    height: auto;
}

.scroll-arrow.pulsating {
    animation: pulsate 1.5s infinite ease-in-out; /* Using the clean pulsate keyframes */
    transform-origin: center;
    border: none !important; /* Remove any accidental border */
    box-shadow: none !important; /* Remove any accidental shadow */
    outline: none !important; /* Remove any accidental outline */
}

/* Modern card styling for content sections */
.content-card {
    background: var(--primary-background);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-color);
    margin: 32px auto;
    max-width: 900px;
}

/* Animation for the 'Are you ready' H2 */
#h2-are-you-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#h2-are-you-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
}