:root {
    /* Colors */
    --primary-color: #006633;
    --accent-color: #800020;
    --bg-color: #f5f5f5;
    --text-color: #333333;
    --white: #ffffff;
    --light-gray: #e0e0e0;

    /* Fonts */
    --font-heading: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--bg-color) 0%, #e8f5e9 100%);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
}

.video-placeholder {
    background: #000;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 8px;
}

.play-button {
    font-size: 3rem;
    margin-bottom: 10px;
}

.countdown {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 20px 0;
}

#timer {
    font-size: 2rem;
    font-weight: 700;
    font-family: monospace;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #600018;
    /* Darker Burgundy */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Hero Carousel */
.hero-carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: auto;
    aspect-ratio: 16/9;
    /* Maintain aspect ratio */
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
    /* Black background for letterboxing if needed */
}

.hero-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents cutting off */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel-img.active {
    opacity: 1;
}

/* Rounded Buttons */
.btn-rounded {
    border-radius: 50px;
    /* Pill shape */
    padding-left: 40px;
    padding-right: 40px;
}

.cta-container {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Sections */
section {
    padding: 60px 0;
}

.content-section,
.benefits-section {
    background: var(--white);
}

.text-block blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    padding-left: 20px;
    font-style: italic;
    background: #f9f9f9;
    padding: 15px;
}

/* Benefits Grid */
.benefit-grid,
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
}

/* Landing Page Split Layout */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .split-layout {
        flex-direction: row;
        align-items: center;
    }
}

.text-content,
.image-carousel {
    flex: 1;
}

.image-carousel {
    position: relative;
    height: 300px;
    /* Adjust as needed */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

/* Landing Page Adjustments */
.center-text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.inline-list {
    text-align: left;
    display: inline-block;
}

.section-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* List Styles */
ul.check-list li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

ul.check-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Utils */
.center-text {
    text-align: center;
}

.impact-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
}

/* Consultant Carousel */
.consultant-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.consultant-carousel-container {
    position: relative;
    min-height: 350px;
    /* Space for content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultant-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: none;
    /* Hidden by default */
    width: 100%;
    max-width: 800px;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-left: 5px solid var(--accent-color);
}

.consultant-card.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultant-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .consultant-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.consultant-image-placeholder {
    width: 120px;
    height: 120px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: 0 auto;
    overflow: hidden;
}

.consultant-info h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.consultant-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.consultant-info .bio {
    font-style: italic;
    color: #555;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.carousel-indicators {
    text-align: center;
    margin-top: 20px;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: var(--primary-color);
}

/* Centering Utilities */
.center-text {
    text-align: center;
}

.inline-block-container {
    display: inline-block;
    text-align: left;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.text-left-mobile {
    text-align: left;
}

.center-text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Unified Font Size */
p,
li {
    font-size: 1.1rem;
    /* Unified size */
}

.impact-text {
    font-size: 1.25rem;
    /* Slightly larger for emphasis */
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.6;
}

/* FAQ Styling */
.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

details {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: left;
}

summary {
    padding: 15px;
    cursor: pointer;
    background: #f1f1f1;
    font-weight: 600;
    list-style: none;
    /* Hide default triangle */
    position: relative;
    padding-right: 40px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-weight: bold;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 15px;
    margin: 0;
    background: var(--white);
}

/* Legal text readability */
.text-content-legal {
    max-width: 800px;
    margin: 40px auto;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--accent-color);
}

/* Timer in own line */
.countdown-line {
    display: block;
    margin: 20px 0;
}

.countdown-line p {
    font-weight: bold;
}

.timer-highlight {
    display: block;
    margin-top: 10px;
    font-size: 2.5rem;
    color: var(--accent-color);
    /* White in hero box if hero has color, or keep as is */
}

/* Adjust button placement */
.cta-container {
    margin-top: 30px;
    margin-bottom: 50px;
}