        /* Keeping original variables and general styles */
:root {
    --background-color: #F5F5F5;
    --primary-color: #578E7E;
    --secondary-color: #2C3E50;
    --terciary-color: #F0E6C8;
    --accent-color: #E76F51;
    --text-color: #333;
    --card-bg: white;
    --common-text: 'Inter', sans-serif;
    --enfasis-text: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--common-text);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    gap: 2rem;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-logo {
    width: 150px;
    transition: transform 0.3s ease;
}

.landing-logo:hover {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    gap: 1rem;
}

.header-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.header-button.cta {
    background-color: var(--primary-color);
    color: white;
}

.header-button.cta:hover {
    background-color: #4a7a6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(87, 142, 126, 0.2);
}

.hero-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(87, 142, 126, 0.2);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

h1 {
    font-family: var(--enfasis-text);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(87, 142, 126, 0.3);
}

.primary-button:hover {
    background-color: #4a7a6a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(87, 142, 126, 0.4);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: rgba(87, 142, 126, 0.1);
    transform: translateY(-3px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.users-count {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.features-section {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(87, 142, 126, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--terciary-color);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(87, 142, 126, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-bg {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--terciary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-bg {
    transform: scale(1.5);
}

.video-showcase {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(87, 142, 126, 0.1);
    margin-bottom: 3rem;
    border: 2px solid var(--terciary-color);
}

.video-showcase h2 {
    font-family: var(--enfasis-text);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-tabs {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Enable wrapping for tabs */
}

.video-tab {
    padding: 0.8rem 1.5rem;
    background-color: var(--terciary-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    flex-grow: 1; /* Allow tabs to grow to fill space */
    text-align: center; /* Center text in tabs */
    min-width: 100px; /* Minimum width for each tab */
    margin-bottom: 0.5rem; /* Space between tabs when wrapped */
}

.video-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.video-tab:hover:not(.active) {
    background-color: #e6dcba;
}

.video-content {
    display: none;
}

.video-content.active {
    display: block;
}

.video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(87, 142, 126, 0.2);
    background-color: black; /* Add black background for letterboxing/pillarboxing */
}

/* Updated rule to include video tag */
.video-container iframe, .video-container img, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(87, 142, 126, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #4a7a6a;
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 0.5rem;
}

.video-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

.testimonials-section {
    margin-bottom: 3rem;
}

.testimonials-section h2 {
    font-family: var(--enfasis-text);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonials-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 8px 25px rgba(87, 142, 126, 0.1);
    border: 2px solid var(--terciary-color);
    position: relative;
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--terciary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
}

.author-role {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.cta-section {
    background-color: var(--terciary-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(87, 142, 126, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--enfasis-text);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-input {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    width: 300px;
    font-family: var(--common-text);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #4a7a6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 142, 126, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.landing-footer {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(87, 142, 126, 0.1);
    border: 2px solid var(--terciary-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #4a7a6a;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #4a7a6a;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .landing-header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    h1 {
        font-size: 2.2rem;
    }

    .features-section {
        flex-direction: column;
    }

    .video-tabs {
        flex-direction: column; /* Stack tabs vertically on smaller screens */
        align-items: center; /* Center tabs horizontally */
    }

    .video-tab {
        width: 100%; /* Make tabs full width */
        margin-bottom: 0.5rem; /* Add some space between stacked tabs */
        text-align: center; /* Center text inside tabs */
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-input {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
