﻿:root {
    --color-primary-purple: #452c65;
    --color-bg-white: #f9fafc;
    --color-text-main: #333333;
    --color-white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --header-height: 60px;
    --header-sticky-height: 60px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-white);
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-purple);
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    padding: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    will-change: transform;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.sticky {
    padding: 0;
    background-color: var(--color-bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-header.sticky .header-container {
    height: var(--header-sticky-height);
}

.site-branding {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 1;
    min-width: 0;
}

.site-branding a {
    display: block;
    min-width: 0;
    flex-shrink: 1;
}

.header-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    max-height: 50px;
    display: block;
    transition: height 0.3s ease;
}

.site-header.sticky .header-logo {
    height: 50px;
    width: auto;
    max-height: 50px;
}

.main-navigation {
    margin-left: auto;
    margin-right: 15px;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.main-navigation a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
    color: #000000;
}

.main-navigation a:hover {
    color: var(--color-primary-purple);
}

.header-extras {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 23px;
}

.language-switcher {
    position: relative;
    width: 110px;
    height: 40px;
    z-index: 1300;
}

.language-switcher ul {
    display: block;
    background: var(--color-primary-purple);
    border-radius: 6px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 40px;
    overflow: hidden;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease, border-radius 0.3s ease;
    display: flex;
    flex-direction: column;
}

.language-switcher.active ul {
    height: auto;
    overflow: visible;
    border-radius: 6px !important;
}

.language-switcher ul li {
    width: 100%;
    margin: 0;
    display: block;
    opacity: 1;
    order: 2;
}

.language-switcher ul li.current-lang,
.language-switcher ul li.current-lang a {
    border-radius: 6px 6px 0 0;
}

.language-switcher ul li:not(.current-lang),
.language-switcher ul li:not(.current-lang) a {
    border-radius: 0 0 6px 6px;
}

.language-switcher ul li.current-lang {
    order: 1;
    background: var(--color-primary-purple);
}

.language-switcher ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    height: 40px;
    color: var(--color-white);
    font-weight: 200;
    font-family: var(--font-body);
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.lang-name-mobile {
    display: none;
}

.language-switcher img {
    height: 14px;
    width: auto;
    display: block;
}

.lang-mock-ul {
    background: var(--color-primary-purple);
    border-radius: 10px;
}



.site-footer {
    background-color: #302245;
    color: var(--color-white);
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.site-info {
    font-size: 14px;
    opacity: 0.8;
}

.site-info a {
    color: var(--color-white);
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary-purple);
    margin: 5px 0;
    transition: 0.3s;
}

.header-extras {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {

    .site-branding {
        order: 1;
        margin-right: auto;
    }

    .header-extras {
        order: 2;
        margin-left: 8px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main-navigation {
        order: 3;
        margin-left: 0;
        margin-right: 0;
    }

    .menu-toggle {
        display: block;
        padding-right: 0;
    }

    .main-navigation .nav-menu-container {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(249, 250, 252, 0.9) !important;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        z-index: 1200;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .header-extras {
            gap: 10px !important;
        }

        .header-cta-btn,
        .language-switcher {
            margin: 0 !important;
        }

        .language-switcher {
            width: 69px !important;
            flex: 0 0 auto;
            min-width: 0;
        }

        .language-switcher ul {
            width: 69px !important;
        }

        .language-switcher ul li a {
            padding: 0 10px;
            gap: 6px;
        }

        .cta-text-desktop {
            display: none;
        }

        .cta-text-mobile {
            display: inline;
        }

        .lang-name-desktop {
            display: none;
        }

        .lang-name-mobile {
            display: inline;
        }
    }

    .main-navigation.toggled .nav-menu-container {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.section-title.center {
    text-align: center;
}



.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-white);
    padding: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: var(--header-height);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-name {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1.unified-large-title,
h2.unified-large-title,
h3.unified-large-title,
.unified-large-title.testimonials-title,
.unified-large-title.methods-title,
.unified-large-title.topics-title,
.unified-large-title.services-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(45px, 5vw, 55px);
}

.hero-name-title.unified-large-title {
    font-size: clamp(45px, 7vw, 100px) !important;
}

.hero-subtitle {
    font-size: clamp(22px, 4vw, 50px) !important;
    line-height: 1.2;
}

.hero-section .unified-large-title {
    color: var(--color-white);
}

.services-section .unified-large-title,
.topics-section .unified-large-title {
    color: var(--color-white);
}

.methods-section .unified-large-title,
.testimonials-section .unified-large-title {
    color: var(--color-primary-purple);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
    color: var(--color-white);
    text-align: center;
    gap: 50px;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.hero-name {
    margin-bottom: 0;
}

.hero-subtitle {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0;
    max-width: 800px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.force-break {
    display: block;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC100;
    color: #000;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    padding: 0 24px;
    height: 46px;
    border-radius: 6px;
    margin-top: 0;
    transition: transform 0.2s ease;
    white-space: nowrap;
}

@media (hover: hover) {

    .hero-cta-btn:hover,
    .header-cta-btn:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(255, 193, 0, 0.4);
    }
}

.hero-cta-btn:focus,
.header-cta-btn:focus {
    transform: none;
    box-shadow: none;
    outline: none !important;
}

.hero-cta-btn:active,
.header-cta-btn:active {
    transform: scale(0.98);
    box-shadow: none;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC100;
    color: #000;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 0 15px;
    height: 40px;
    border-radius: 6px;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.cta-text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .cta-text-desktop {
        display: none;
    }

    .cta-text-mobile {
        display: inline;
    }
}

@media (max-width: 1366px) {
    .hero-content {
        padding-top: 112px;
        text-align: center !important;
        align-items: center !important;
    }

    .hero-name {
        font-size: min(75px, 11vw);
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 40px;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 140px;
    }

}

.about-section {
    color: var(--color-text-main);
}

.about-header-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.about-label .label-text {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #442d65;
    font-weight: 400;
}

.about-headline {
    justify-self: end;
    text-align: left;
    max-width: 900px;
}

.about-headline h2 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: calc(50% - 100px) 1fr;
    gap: 30px;
    align-items: start;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-main);
}

.white-content-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    margin-bottom: 10px;
}

.about-accordion-card,
.accordion-card-style {
    padding: 0;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.about-accordion-card .accordion-header,
.accordion-card-style .accordion-header {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 0;
    height: 50px;
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    font-size: clamp(18px, 1.6vw, 20px);
    text-align: left;
    color: #000;
}

.accordion-card-style .accordion-header::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 7px;
    background-color: #71588D;
    border-radius: 999px;
    transition: background-color 0.3s ease;
}

.accordion-card-style .accordion-header.active::before {
    background-color: #87CB94;
}

.accordion-title-mobile {
    display: none;
}

@media (max-width: 768px) {
    .accordion-title-desktop {
        display: none;
    }

    .accordion-title-mobile {
        display: block;
    }
}

.about-accordion-card .accordion-content,
.accordion-card-style .accordion-content {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-in-out;
}

.about-accordion-card .accordion-content.active,
.accordion-card-style .accordion-content.active {
    padding-bottom: 40px;
    padding-top: 15px;
    opacity: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-accordion-card .accordion-content p {
    margin-bottom: 1em;
}

.about-accordion-card .accordion-content p:last-child {
    margin-bottom: 0;
}

.about-text .text-bold {
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 0;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-primary-purple);
    font-weight: 700;
    font-style: normal;
    margin: 40px 0;
    padding: 0;
    border: none;
}

.about-signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.signature-img {
    height: 105px;
    width: auto;
    margin-bottom: 10px;
}

.signature-text .sig-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    color: #442d65;
    font-weight: 400;
}

.signature-text .sig-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #442d65;
    margin-top: 5px;
    line-height: 1.4;
}

.methods-text-unified,
.methods-intro .white-content-card p {
    margin: 0 !important;
}

.white-content-card> :last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .white-content-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-accordion-card .accordion-header,
    .accordion-card-style .accordion-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-accordion-card,
    .accordion-card-style {
        padding: 0 !important;
    }

    .about-accordion-card .accordion-content,
    .accordion-card-style .accordion-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .about-accordion-card .accordion-content p,
    .about-accordion-card .accordion-content>*,
    .accordion-card-style .accordion-content p,
    .accordion-card-style .accordion-content>* {
        overflow-wrap: break-word;
        word-break: normal;
        white-space: normal;
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.services-section {
    background-color: var(--color-primary-purple);
    color: var(--color-white);
    padding: 80px 0;
    margin-top: 0;
}

.services-header-content {
    text-align: center;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-white);
    margin-bottom: 40px;
    font-weight: 700;
}

.services-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.9;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    position: relative;
    background-color: transparent;
    border-radius: 20px;
    padding: 45px 20px 30px 20px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 30px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
}

.service-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 5px;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.service-card p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 200;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .service-card p {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-icon img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding-top: 50px;
    }
}

.services-section .section-title {
    color: var(--color-white);
}

.service-item img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}



.topics-section.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-white);
    position: relative;
}

.topics-content {
    background: rgba(69, 44, 101, 0.9);
    padding: 40px;
    max-width: 500px;
    margin-left: auto;
    border-radius: 4px;
}

.topics-content h2 {
    color: var(--color-white);
}

.topics-content li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}



@media (max-width: 768px) {


    .about-container {
        grid-template-columns: 1fr;
    }

    .about-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-headline h2 {
        font-size: 32px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-image img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .topics-content {
        margin: 0 auto;
    }
}

.methods-section {
    background-color: transparent;
}

.methods-header {
    margin-bottom: 60px;
}

.methods-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #442d65;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
}

.methods-title {
    font-family: 'Playfair Display', serif;
    color: #452b64;
    text-align: center;
    font-weight: 700;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.methods-intro p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}


.accordion {
    border-top: none;
}

.accordion-item {
    border-bottom: none;
    margin-bottom: 5px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    height: 70px;
    padding: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover,
.accordion-header.active {
    color: #000000;
}



.accordion-icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(-135deg);
    border-color: #452b64;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content.active {
    padding-bottom: 15px;
    padding-top: 45px;
}

.accordion-content p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}


.methods-lead-text {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    color: var(--color-primary-purple) !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    display: block !important;
}

.methods-lead-text+.methods-body-text {
    padding-top: 30px !important;
}

.methods-body-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
}

.methods-cta-btn {
    margin-top: 30px;
}

@media (max-width: 992px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        font-size: 22px;
    }
}

.topics-section {
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    overflow: hidden;
}

.topics-bg-layer {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 230%;
    z-index: 0;
    will-change: transform;
    pointer-events: none;
}

.topics-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {

    .topics-section {
        clip-path: inset(0);
        padding-bottom: 0;
        background: #333;
    }

    .topics-bg-layer {
        position: fixed;
        top: calc(var(--vh, 1svh) * -25);
        left: 0;
        width: 200%;
        height: calc(var(--vh, 1svh) * 150);
        z-index: 0;
        will-change: transform;
    }

    .topics-parallax-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



.topics-overlay-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.topics-overlay-right {
    width: 50%;
    height: 100%;
    background-color: rgba(69, 43, 100, 0.9);
    margin-left: auto;
}

.topics-container-full {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.topics-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.topics-intro-content {
    padding-right: 40px;
}

.topics-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 15px;
}

.topics-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.topics-description p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.topics-list-container {
    padding-left: 0;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.topic-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.topic-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    position: relative;
}

.topic-icon::before {
    content: '';
    display: block;
    width: 8px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-left: 8px;
}

.topic-text {
    display: flex;
    flex-direction: column;
}

.topic-main {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 5px;
}

.topic-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 200;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .topics-split-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .topics-overlay-split {
        flex-direction: column;
    }

    .topics-overlay-right {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        bottom: 0;
        top: auto;
        height: 60%;
        display: none;
    }


    .topics-overlay-split {
        display: none;
    }

    .topics-container-full {
        padding: 0;
    }

    .topics-intro-content {
        padding: 40px 20px;
        background: transparent;
    }

    .topics-list-container {
        padding: 80px 20px 80px 20px;
        background-color: rgba(69, 43, 100, 0.95);
        min-height: 300px;
    }

    .topics-title {
        font-size: 50px;
    }
}

.testimonials-section {
    background-color: var(--color-bg);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 40px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    color: #432C62;
    margin-top: 15px;
    font-weight: 700;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 20px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    position: relative;
    overflow: visible !important;
    margin-top: 40px;
    margin-bottom: 20px;
}

.testimonial-icon {
    font-size: 95px;
    line-height: 1;
    color: #6F588C;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -35px;
    left: 40px;
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonial-icon {
        left: 20px;
        font-family: 'Playfair Display', serif;
    }
}

.testimonial-text {
    font-family: 'Source Sans 3', sans-serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 15px;
    text-align: left;
    padding: 0;
    width: 100%;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding-top: 5px;
    color: #432C62;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.testimonials-grid {
    margin-top: -15px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .testimonials-title {
        font-size: 50px;
    }
}

.site-footer {
    background-color: #31204a;
    color: var(--color-white);
    padding-bottom: 30px;
    font-family: 'Source Sans 3', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-copyright {
    font-size: 14px;
    opacity: 1;
    color: var(--color-white);
    position: relative;
    z-index: 10;
}

.footer-copyright p {
    margin: 0;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 30px;
}

.footer-contact-row {
    display: flex;
    gap: 80px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.contact-label {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--color-white);
}

.contact-value {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.contact-value:hover {
    opacity: 0.8;
    color: var(--color-white);
}

.contact-value i {
    font-size: 18px;
}

.footer-bottom-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 10px;
        align-items: center;
        padding-top: 10px;
    }

    .footer-left,
    .footer-right {
        display: contents;
    }

    .footer-logo {
        grid-row: 1;
        grid-column: 1;
        justify-self: start;
        text-align: left;
    }

    .footer-logo img {
        margin-bottom: 0;
        width: 200px;
        height: 200px;
    }

    .footer-contact-row {
        grid-row: 1;
        grid-column: 2;
        justify-self: end;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 0;
        align-items: flex-end;
    }

    .contact-block {
        align-items: flex-end;
    }

    .footer-bottom-links {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
        margin-top: 0;
    }

    .footer-copyright {
        grid-row: 3;
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
    }
}

.appointment-section {
    position: relative;
    padding-top: 80px;
    color: var(--color-white);
    overflow: hidden;
}

.appointment-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.appointment-bg-layer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.appointment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(68, 45, 101, 0.9);
    z-index: 2;
}

.appointment-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.appointment-label-style {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 400;
}

.appointment-content {
    width: 100%;
    max-width: 670px;
    display: block;
    margin-right: auto;
    margin-left: 0;
    margin-top: -70px;
}

#amelia-booking-wrap,
#amelia-step-booking,
.am-wrap,
.amelia-app-booking-wrapper,
.am-fs__step-booking {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    min-width: 100% !important;
}

@media (max-width: 992px) {
    .appointment-label-style {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .appointment-content {
        margin: 0 auto;
    }
}


body.theme-panel-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.theme-panel-page .site-main.theme-panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
}

.panel-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.panel-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.panel-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 0px 80px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.panel-tab-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    max-width: 500px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    padding: 4px;
    box-sizing: border-box;
    position: relative;
}

.panel-tab-btn {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-tab-btn.active {
    background-color: var(--color-primary-purple);
    color: #FFFFFF;
}

.panel-tab-divider {
    width: 1px;
    height: 24px;
    background-color: #E0E0E0;
    margin: 0 4px;
}

.panel-content-area {
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
}

.panel-tab-content {
    display: none;
    width: 100%;
}

.panel-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-panel-page .amelia-v2-booking,
.theme-panel-page #amelia-container,
.theme-panel-page [id^="amelia-"],
.theme-panel-page [class*="amelia-"] {
    margin-top: -70px;
    background-color: transparent !important;
}

.header-profile-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--color-primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background-color 0.2s;
}

.header-profile-btn:hover {
    background-color: #5c3b85;
}

@media (max-width: 768px) {
    .panel-container {
        padding-top: 100px;
    }

    .panel-tab-bar {
        width: calc(100% - 60px);
        height: 48px;
    }

    .panel-tab-btn {
        font-size: 16px;
    }
}


.header-minimal-container {
    justify-content: space-between;
}

.header-minimal-extras {
    margin-left: auto;
}

.entry-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.entry-content-center {
    text-align: center;
}

.cta-icon {
    margin-right: 8px;
}

.header-cta-icon {
    margin-right: 6px;
}

.prof-intro-bold {
    font-weight: 700;
    margin-bottom: 30px;
}

.prof-intro-normal {
    margin-bottom: 30px;
}

.prof-intro-belief {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-primary-purple);
    font-weight: 700;
    margin-bottom: 30px;
}

.prof-intro-exp {
    margin-bottom: 1em;
}