﻿/* Property of Vertex Digital LLC licensed to Midas Education Consulting - All rights reserved. */

:root {

    --primary-bg: #f9fbfc;
    --hero-bg: #64c3cf;
    --accent-purple: #c6a7e9;
    --accent-purple-light: #dacdf2;
    --button-turquoise: #2ecbcf;
    --dark-text: #2e3442;
    --muted-text: #6b7586;

    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;

}

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

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

img {
    max-width: 100%;
    display: block;
}

.hero-image img,
.commitment-image img,
.story-image img,
.intro-video iframe,
.intro-video img,
.video-wrapper iframe {
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
}

.logo:hover {
    color: var(--dark-text);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.nav-arrow {
    margin-left: 4px;
    font-size: 10px;
    line-height: 1;
    vertical-align: middle;
}

.nav-links li.active a,
.nav-links li a:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.mobile-menu {
    display: none;
}

.contact-btn {
    background: var(--button-turquoise);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero {

    background: var(--hero-bg);
    border-radius: 24px;

    padding: 80px 60px;
    color: #ffffff;
    width: 92%;
    max-width: 1600px;
    margin: 40px auto;
}

.sub-hero {
    background: #f6f9fb;
    color: var(--dark-text);
}

.sub-hero h1,
.sub-hero h2,
.sub-hero h3,
.sub-hero p {
    color: var(--dark-text);
}

.service-rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-row:nth-child(odd) {
    background: #fafbfd;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.service-row h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-row p {
    font-size: 15px;
    color: var(--muted-text);
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
}

.article-card {
    display: flex;
    gap: 24px;
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.article-card:nth-child(odd) {
    background: #fafbfd;
}

.article-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    flex-shrink: 0;
}

.article-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.article-content p {
    font-size: 15px;
    color: var(--muted-text);
    margin-bottom: 12px;
}

.article-content a {
    color: var(--button-turquoise);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.hero h1,
.hero h2,
.hero h3 {
    color: #ffffff;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1 1 50%;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-text .hero-subheader {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.98);
    font-family: var(--body-font);
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-text,
.hero-image img {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-btn {
    background: #0f0f0f;
    color: #ffffff;
    padding: 12px 34px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: opacity 0.3s;
}

.hero-btn:hover {
    opacity: 0.85;
}

.hero-image {
    flex: 1 1 45%;
    text-align: right;
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;

    transition: opacity 0.5s ease;
}

.features {
    margin-top: 60px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
    flex: 1 1 30%;
    min-width: 260px;
    display: flex;
    flex-direction: column;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.feature-card .icon-circle {
    margin: 0;
}

.icon-circle {

    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: #ffffff;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.services-summary {
    margin-top: 100px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    padding: 36px;
    flex: 1 1 45%;
    min-width: 280px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    color: var(--muted-text);
}

.service-item .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.team {
    margin-top: 80px;
    margin-bottom: 80px;
}

.team-about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.team-images {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.team-images .team-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: block;
}

.team-images .top-img {
    width: 65%;
    align-self: flex-start;
}

.team-images .bottom-img {
    width: 100%;
    align-self: flex-start;
    margin-top: -25px;
}

.team-text {
    flex: 1 1 55%;
    margin-left: 40px;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-text p {
    font-size: 15px;
    color: var(--muted-text);
    margin-bottom: 32px;
}

.team-btn {
    background: var(--button-turquoise);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.team-btn:hover {
    opacity: 0.85;
}

.footer {
    background: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.footer p {
    font-size: 14px;
    color: var(--muted-text);
}

@media (max-width: 1024px) {

    .hero-content,
    .team-content,
    .services-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-image,
    .team-text {
        margin-top: 40px;
    }

    .team-text {
        margin-left: 0;
    }

    .feature-card,
    .service-item {
        flex: 1 1 100%;
    }

    .process-card {
        flex: 1 1 100%;
    }
}

.contact-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.contact-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15px;
    color: var(--muted-text);
}

.contact-info i {
    margin-right: 8px;
    color: var(--accent-purple);
}

.contact-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    align-self: flex-start;
    background: var(--button-turquoise);
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-form button:hover {
    opacity: 0.85;
}

.process {
    margin-top: 120px;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    padding: 40px 30px;
    flex: 1 1 30%;
    min-width: 260px;
    text-align: center;
}

.process-card .process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.process-card .process-icon i {
    color: #ffffff;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.cta-section {
    background: var(--hero-bg);
    border-radius: 32px;
    margin: 80px 0;

    padding: 50px 0;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    background: #0f0f0f;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.cta-btn:hover {
    opacity: 0.9;
}

.timeline {
    position: relative;
    margin-top: 80px;
    padding-left: 70px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-purple);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    position: absolute;
    left: -45px;
    top: 0;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    color: var(--muted-text);
}

.principle-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    justify-content: space-between;
}

.principle-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
    flex: 1 1 30%;
    min-width: 260px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.principle-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.principle-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.principle-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.value-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-top: 60px;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
    flex: 1 1 30%;
    min-width: 280px;

    display: flex;
    gap: 18px;
    align-items: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    padding: 32px 28px;
    flex: 1 1 30%;
    min-width: 280px;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: var(--accent-purple);
}

.service-card h3 {
    font-size: 22px;
    margin: 16px 0 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 60px;
}

.course-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    flex: 1 1 45%;
    min-width: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-card .course-content {
    padding: 28px;
    flex-grow: 1;
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.course-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.course-card .course-footer {
    background: var(--primary-bg);
    padding: 16px 28px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card .course-footer a {
    color: var(--button-turquoise);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 60px;

    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(0);
}

.testimonial-card {
    background: #ffffff;

    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 36px 32px;
    flex: 1 1 30%;
    min-width: 280px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -16px;
    left: 20px;
    font-size: 64px;
    color: var(--accent-purple);
    line-height: 1;
}

.testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--muted-text);
    line-height: 1.5;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 60px;
}

.resource-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex: 1 1 30%;
    min-width: 280px;
}

.resource-card .resource-header {
    height: 140px;
    background: var(--accent-purple);
}

.resource-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.resource-card p {
    font-size: 15px;
    color: var(--muted-text);
    margin: 0 20px 20px;
}

.resource-card a {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--button-turquoise);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 1400px) {

    .value-card,
    .service-card,
    .course-card,
    .testimonial-card,
    .resource-card {
        flex: 1 1 100%;
    }
}

.footer .footer-container .footer-col:first-child ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 24px;
    row-gap: 6px;
}

.footer .footer-container .footer-col:first-child ul li {
    margin-bottom: 0;
}

.team-about {
    margin-top: 100px;
    margin-bottom: 100px;
}

.team-about .team-cards h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.team-member {

    flex: 1 1 40%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    padding: 32px 24px;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 600;
}

.team-member span {
    display: block;
    font-size: 14px;
    color: var(--muted-text);
    margin-bottom: 12px;
    font-weight: 500;
}

.team-member p {
    font-size: 15px;
    color: var(--muted-text);
    line-height: 1.6;
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    position: relative;
}

.testimonial-carousel .testimonial-content {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    min-width: 280px;
    max-width: 700px;
    text-align: center;
}

.testimonial-carousel .testimonial-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-carousel .testimonial-content p {
    font-size: 16px;
    color: var(--muted-text);
    line-height: 1.6;
}

.testimonial-carousel .testimonial-arrow {
    cursor: pointer;
    font-size: 28px;
    color: var(--accent-purple);
    padding: 12px;
    transition: color 0.3s;
}

.testimonial-carousel .testimonial-arrow:hover {
    color: var(--button-turquoise);
}

.intro-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.value-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: var(--accent-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.value-icon-circle i {
    color: #ffffff;
    font-size: 26px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: var(--muted-text);
}

.about-story {

    margin-top: 60px;
    margin-bottom: 60px;
}

.about-story .story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-story .story-text {
    flex: 1 1 50%;
    max-width: 600px;
}

.about-story .story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-story .story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-text);
    margin-bottom: 16px;
}

.about-story .story-text ul {

    margin-top: 12px;
    margin-left: 0;
}

.about-story .story-text li {
    list-style: none;
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--muted-text);
    margin-bottom: 8px;
}

.about-story .story-text li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-purple);
    font-size: 20px;
    line-height: 1;
}

.about-story .story-image {
    flex: 1 1 45%;
    text-align: center;
}

.about-story .story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.story-values {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.story-value {
    flex: 1 1 30%;
    min-width: 260px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 28px;
    text-align: center;
}

.story-value .story-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.story-value h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-text);
}

.story-value p {
    font-size: 15px;
    color: var(--muted-text);
    line-height: 1.6;
}

@media (max-width: 1400px) {
    .story-value {
        flex: 1 1 100%;
    }
}

.service-rows {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-row:nth-child(odd) {
    background: #fafbfd;
}

.service-row .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--accent-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.service-row h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-row p {
    font-size: 15px;
    color: var(--muted-text);
}

.video-testimonial-group {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.video-testimonial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.video-testimonial .video-box {
    flex: 1 1 50%;
    min-width: 300px;
}

.video-testimonial .video-box iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.video-testimonial .quote-box {
    flex: 1 1 45%;
    max-width: 500px;
}

.video-testimonial .quote-box blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.video-testimonial .quote-box cite {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-purple);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.testimonial-slider .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 32px;
    text-align: center;
}

.testimonial-slider .testimonial-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-slider .testimonial-card p {
    font-size: 16px;
    color: var(--muted-text);
    margin-bottom: 0;
}

.testimonial-slider .testimonial-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.testimonial-slider .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: #ffffff;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.testimonial-slider .nav-btn:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
}

.testimonial-carousel .testimonial-content {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 32px;

    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-carousel .testimonial-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-carousel .testimonial-content p {
    font-size: 16px;
    color: var(--muted-text);
    margin-bottom: 0;
}

.testimonial-carousel .testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: #ffffff;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.testimonial-carousel .testimonial-arrow:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.video-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.video-carousel .video-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: #ffffff;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.video-carousel .video-arrow:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.video-carousel .video-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    flex: 1 1 auto;
}

.video-carousel .video-box iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.video-carousel .quote-box {
    max-width: 400px;
}

.video-carousel .quote-box blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.video-carousel .quote-box cite {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-purple);
}

.video-nav-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

@media (max-width: 1400px) {
    .video-carousel .video-content {
        flex-direction: column;
        text-align: center;
    }

    .video-carousel .quote-box {
        max-width: none;
    }
}

.cta-section {
    padding: 60px 0;
    background: none;
}

.cta-card {
    background: var(--hero-bg);
    border-radius: 24px;

    padding: 48px 48px;
    text-align: center;
    color: #ffffff;

    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-card p {
    font-size: 16px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-card .cta-btn {
    background: #0f0f0f;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.cta-card .cta-btn:hover {
    opacity: 0.85;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent-purple);
    cursor: pointer;
}

@media (max-width: 1250px) {


    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 24px;
        right: 20px;
        z-index: 1000;
    }


    .nav-content .desktop-nav,
    .nav-content .desktop-contact {
        display: none;
    }


    .mobile-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        background: var(--primary-bg);
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    }


    .mobile-menu.open {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }


    .mobile-menu.open ul.nav-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }


    .mobile-menu.open .contact-btn {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 40px 24px;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .hero-text .hero-subheader {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-image img {
        height: 200px;
    }

    .small-practice-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .small-practice-content h2 {
        font-size: 28px;
    }

    .small-practice-content p {
        font-size: 15px;
    }

    .team-about h2,
    .team-text h2,
    .commitment-text h2,
    .intro-text h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .video-slide {
        flex-direction: column;
        align-items: stretch;
    }

    .video-slide .video-box,
    .video-slide .quote-box {
        max-width: none;
        width: 100%;
    }

    .video-slide .video-box {
        flex: 0 0 100%;
    }

    .video-slide .quote-box {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .video-nav-wrapper {
        justify-content: center;
    }

    .testimonial-row .testimonial-cards {
        flex-wrap: nowrap;
    }

    .testimonial-row .testimonial-cards .testimonial {
        flex: 0 0 100%;
    }

    .service-item,
    .feature-card,
    .value-card,
    .principle-card,
    .service-card {
        flex: 1 1 100%;
    }

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

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
        text-align: center;
    }

    .commitment-content {
        flex-direction: column;
    }

    .commitment-image {
        order: -1;
        margin-bottom: 20px;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-col {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer .newsletter-form {
        flex-direction: column;
    }

    .footer .newsletter-form button {
        width: 100%;
    }

    .team-carousel .team-list .team-member {
        flex: 0 0 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
    }

    .team-carousel .team-list .team-member img {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    .team-carousel .team-list .team-member p {
        text-align: center;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-carousel-section {
    padding: 80px 0 60px;
    margin-top: 40px;
    background: var(--primary-bg);
}

.logo-carousel {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: clip;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logo-scroll 50s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-item span {
    font-size: 12px;
    color: var(--muted-text);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .logo-carousel-section {
        padding: 40px 0;
    }

    .logo-track {
        gap: 40px;
        animation-duration: 35s;
    }

    .logo-item img {
        height: 36px;
    }

    .logo-item span {
        font-size: 10px;
    }
}

.blog-post {
    padding: 40px 0 60px;
}

.blog-container {
    width: 90%;
    max-width: 760px;
    margin: 0 auto;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--button-turquoise);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: opacity 0.3s;
}

.blog-back:hover {
    opacity: 0.7;
}

.blog-header {
    margin-bottom: 36px;
}

.blog-meta {
    display: block;
    font-size: 13px;
    color: var(--muted-text);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-header h1 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.blog-header .blog-subtitle {
    font-size: 18px;
    color: var(--muted-text);
    line-height: 1.5;
}

.blog-hero-img {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-hero-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.blog-body h2 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-body h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.blog-body ul,
.blog-body ol {
    margin: 0 0 24px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
}

.blog-body li {
    margin-bottom: 8px;
}

.blog-body blockquote {
    border-left: 4px solid var(--hero-bg);
    margin: 32px 0;
    padding: 20px 24px;
    background: #f0f5f2;
    border-radius: 0 12px 12px 0;
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-text);
}

.blog-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.blog-image-caption {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    color: var(--muted-text);
    text-align: center;
    font-style: italic;
}

.blog-footer-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--hero-bg);
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

.blog-footer-cta h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffffff;
}

.blog-footer-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.blog-footer-cta .cta-btn {
    background: #0f0f0f;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.blog-footer-cta .cta-btn:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .blog-header h1 {
        font-size: 28px;
    }

    .blog-header .blog-subtitle {
        font-size: 16px;
    }

    .blog-hero-img img {
        height: 240px;
    }

    .blog-body h2 {
        font-size: 22px;
    }

    .blog-body h3 {
        font-size: 18px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-footer-cta {
        padding: 32px 24px;
    }
}

.footer {
    background: #ffffff;

    padding: 40px 0 30px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: var(--muted-text);
}

.footer .footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 180px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {

    margin-bottom: 6px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--muted-text);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-purple);
}

.footer .newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer .newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.footer .newsletter-form button {
    padding: 10px 16px;
    background: var(--button-turquoise);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer .newsletter-form button:hover {
    opacity: 0.9;
}

.cta-card .newsletter-form {
    display: flex;

    gap: 8px;
    justify-content: center;
    margin-top: 20px;

    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: none;

    border-radius: 8px;
    font-size: 16px;
}

.cta-card .newsletter-form button {
    padding: 12px 20px;
    background: #0f0f0f;
    border: none;

    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cta-card .newsletter-form button:hover {
    opacity: 0.85;
}

.footer .social-icons {

    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.footer .social-icons a {
    color: var(--muted-text);
    font-size: 20px;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: var(--muted-text);
    padding: 0 5%;
    box-sizing: border-box;
}

@media (max-width: 900px) {

    .about-story .story-content,
    .video-testimonial {
        flex-direction: column;
        text-align: center;
    }

    .about-story .story-image {
        margin-top: 20px;
    }

    .video-testimonial .quote-box {
        max-width: none;
    }

    .service-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-row .service-icon {
        margin-bottom: 12px;
    }

    .cta-card {
        padding: 40px 24px;
    }
}

.team-carousel-wrapper {

    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    position: relative;

    overflow: hidden;

}

.team-carousel-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;

    z-index: 1;
}

.team-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-bg), rgba(249, 251, 252, 0));
}

.team-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-bg), rgba(249, 251, 252, 0));
}

.team-carousel {

    overflow: hidden;
    flex: 1;
}

.team-carousel .team-list {
    display: flex;
    gap: 24px;

    flex-wrap: nowrap;
    transition: transform 0.4s ease;
}

.team-carousel .team-member {

    flex: 0 0 calc((100% - (2 * 24px)) / 3);
}

.team-arrow {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: #ffffff;
    color: var(--accent-purple);
    font-size: 20px;
    cursor: pointer;
    margin: 0 8px;
    transition: background 0.3s, color 0.3s;

    z-index: 3;
}

.team-arrow:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

.team-cta h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-family: var(--heading-font);
    color: var(--dark-text);
}

.team-cta p {
    font-size: 15px;
    color: var(--muted-text);
    margin-bottom: 24px;
}

.team-cta .cta-btn {
    background: #0f0f0f;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.team-cta .cta-btn:hover {
    opacity: 0.85;
}

.video-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    position: relative;
}

.video-slide {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.video-slide .video-box {
    flex: 0 0 65%;
}

.video-slide .video-box iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.video-slide .quote-box {
    flex: 1;
    max-width: 35%;
}

.video-slide .quote-box blockquote {
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.video-slide .quote-box cite {
    display: block;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-purple);
}

.video-nav {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: #ffffff;
    color: var(--accent-purple);
    font-size: 20px;
    cursor: pointer;

    margin-right: 0;
    transition: background 0.3s, color 0.3s;
    position: static;
    top: auto;
    transform: none;
}

.video-nav#prevVideo,
.video-nav#nextVideo {
    position: static;
}

.video-nav:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.testimonials-carousel {
    margin-top: 80px;
}

.testimonial-row-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-row {
    overflow: hidden;
    flex: 1;
}

.testimonial-row .testimonial-cards {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.testimonial-nav {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: #ffffff;
    color: var(--accent-purple);
    font-size: 20px;
    cursor: pointer;

    margin-right: 0;
    transition: background 0.3s, color 0.3s;
}

.testimonial-nav:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.testimonial-nav-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.intro-text {
    flex: 1 1 45%;
    max-width: 600px;
}

.intro-text h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--dark-text);
}

.intro-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-text);
    margin-bottom: 20px;
}

.intro-video {
    flex: 1 1 52%;
    max-width: 700px;
}

.intro-video iframe,
.intro-video img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    object-fit: cover;
}

.commitment-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.commitment-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.commitment-image img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.story-image img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.commitment-text {
    flex: 1 1 45%;
    max-width: 550px;

    transition: opacity 0.5s ease;
}

.commitment-text h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--dark-text);
}

.commitment-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-text);
    margin-bottom: 20px;
}

.commitment-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.commitment-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--muted-text);
}

.commitment-text li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--accent-purple);
}

.commitment-text .commitment-btn {
    background: var(--button-turquoise);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.commitment-text .commitment-btn:hover {
    opacity: 0.85;
}

.commitment-image {
    flex: 1 1 52%;
    max-width: 700px;
    text-align: center;
}

.commitment-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    object-fit: cover;
}

.small-practice-section {
    margin-top: 100px;
    margin-bottom: 80px;
}

.small-practice-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.small-practice-content h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--dark-text);
}

.small-practice-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-text);
    margin-bottom: 16px;
}

.footer {
    background: #f9fbfc;

    padding: 40px 0;
    color: var(--dark-text);
    border-top: 1px solid #e5e5e5;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 30%;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--dark-text);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--button-turquoise);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: var(--muted-text);
    padding: 0 5%;
    box-sizing: border-box;
}

.publish-date {
    font-size: 13px;
    color: var(--muted-text);
    margin-bottom: 6px;
    display: block;
}

.testimonial-carousel {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
}

.testimonial-carousel .testimonial-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 36px 32px;
}

.testimonial-carousel h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-carousel p {
    font-size: 15px;
    color: var(--muted-text);
    line-height: 1.5;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.testimonial-arrow:hover {
    background: var(--accent-purple);
    color: #ffffff;
}

.testimonial-arrow.prev {
    left: -60px;
}

.testimonial-arrow.next {
    right: -60px;
}

.video-testimonials {
    margin-top: 100px;
    margin-bottom: 80px;
    text-align: center;
}

.video-testimonials h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-text);
}

.video-testimonials p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-text);
}

.video-testimonials iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.get-started-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.get-started-wrapper {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    max-width: 720px;
    margin: 0 auto;
}

.get-started-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-group {
    margin-bottom: 24px;
}

.form-group>label:first-child {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.label-hint {
    font-weight: 400;
    color: var(--muted-text);
    font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--body-font);
    color: var(--dark-text);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(78, 23, 99, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab0ba;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7586' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 8px 0 24px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    font-size: 15px;
    color: var(--dark-text);
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: var(--accent-purple);
    background: #faf7fc;
}

.radio-option input,
.checkbox-option input {
    accent-color: var(--accent-purple);
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-option span,
.checkbox-option span {
    font-weight: 400;
}

.radio-option:has(input:checked),
.checkbox-option:has(input:checked) {
    border-color: var(--accent-purple);
    background: #f5eef9;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--button-turquoise);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    margin-top: 8px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.success-icon {
    margin-bottom: 24px;
}

.success-icon i {
    font-size: 64px;
    color: var(--button-turquoise);
}

.form-success h3 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.form-success p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-text);
    max-width: 520px;
    margin: 0 auto 16px;
}

.form-success .success-sub {
    font-size: 14px;
    margin-top: 24px;
}

.form-success .success-sub a {
    color: var(--button-turquoise);
    text-decoration: none;
    font-weight: 500;
}

.form-success .success-sub a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .get-started-wrapper {
        padding: 32px 20px;
    }

    .get-started-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .form-success h3 {
        font-size: 22px;
    }

    .success-icon i {
        font-size: 48px;
    }
}