:root {
    --primary-color: #7209b7;
    --light-shade: #f3e5f9;
    --dark-shade: #4c0677;
    --text-color: #333333;
    --background-color: #ffffff;
    --secondary-color: #9d4edd;
    --accent-color: #c77dff;
    --error-color: #d00000;
    --success-color: #52b788;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-shade);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-shade);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: var(--dark-shade);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.mainHeader {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbarBrand img {
    height: 50px;
}

.navToggle {
    display: none;
}

.navToggleLabel {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    position: relative;
    transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    transition: var(--transition);
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbarNav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navItem {
    position: relative;
}

.navLink {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.navLink:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navLink:hover:after,
.navItem.active .navLink:after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .navToggleLabel {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .navWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: var(--transition);
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbarNav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .navItem {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .navLink {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .navToggle:checked ~ .navWrapper {
        left: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger {
        background: transparent;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.hero {
    background: linear-gradient(to bottom, var(--light-shade), white);
    padding: 80px 0;
    text-align: center;
}

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

.heroTitle {
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.heroSubtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.heroBtns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media screen and (max-width: 576px) {
    .heroBtns {
        flex-direction: column;
        align-items: center;
    }

    .heroBtns .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

.section {
    padding: 80px 0;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 50px;
}

.sectionTitle h2 {
    color: var(--dark-shade);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.sectionTitle h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cardImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cardContent {
    padding: 20px;
}

.cardTitle {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-shade);
}

.cardText {
    margin-bottom: 15px;
    color: var(--text-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.featuredItems {
    margin-top: 50px;
}

.ingredientGuide {
    background-color: var(--light-shade);
}

.guideItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guideIcon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
}

.seasonalChart {
    overflow-x: auto;
}

.chartTable {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.chartTable th,
.chartTable td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.chartTable th {
    background-color: var(--primary-color);
    color: white;
}

.chartTable tr:nth-child(even) {
    background-color: var(--light-shade);
}

.availability {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.availHigh {
    background-color: var(--success-color);
}

.availMed {
    background-color: orange;
}

.availLow {
    background-color: var(--error-color);
}

.testimonials {
    background-color: var(--light-shade);
    text-align: center;
}

.testimonialItem {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.testimonialText {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonialAuthor {
    font-weight: 600;
    color: var(--dark-shade);
}

.testimonialLocation {
    font-size: 0.9rem;
    color: #777;
}

.ctaSection {
    text-align: center;
    background: linear-gradient(to right, var(--primary-color), var(--dark-shade));
    color: white;
    padding: 80px 0;
}

.ctaTitle {
    color: white;
    margin-bottom: 20px;
}

.ctaDescription {
    max-width: 700px;
    margin: 0 auto 30px;
}

.ctaBtn {
    background-color: white;
    color: var(--primary-color);
}

.ctaBtn:hover {
    background-color: var(--light-shade);
    color: var(--dark-shade);
}

.mainFooter {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footerWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footerInfo h3,
.footerLinks h3,
.footerNewsletter h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.address,
.contact {
    margin-bottom: 10px;
}

.footerLinks ul {
    list-style: none;
}

.footerLinks li {
    margin-bottom: 10px;
}

.footerLinks a {
    color: #ccc;
}

.footerLinks a:hover {
    color: white;
}

.newsletterForm {
    display: flex;
    margin-top: 15px;
}

.newsletterForm input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletterForm button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletterForm button:hover {
    background-color: var(--dark-shade);
}

.footerBottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    margin: 0;
}

.footerBottomLinks a {
    color: #ccc;
    margin-left: 20px;
}

.footerBottomLinks a:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .footerBottom {
        flex-direction: column;
        text-align: center;
    }

    .footerBottomLinks {
        margin-top: 10px;
    }

    .footerBottomLinks a {
        margin: 0 10px;
    }
}

.cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(200%);
    transition: transform 0.5s ease;
}

.cookieConsent.show {
    transform: translateY(0);
}

.cookieContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cookieContent p {
    margin: 0;
    padding-right: 20px;
}

#acceptCookies {
    white-space: nowrap;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

#acceptCookies:hover {
    background-color: var(--dark-shade);
}

@media screen and (max-width: 768px) {
    .cookieContent {
        flex-direction: column;
    }

    .cookieContent p {
        margin-bottom: 10px;
        padding-right: 0;
        text-align: center;
    }
}

.pricingCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricingCard {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.pricingCard:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricingHeader {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.pricingTitle {
    color: white;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricePeriod {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricingFeatures {
    padding: 30px;
}

.pricingFeatures ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricingFeatures li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricingFeatures li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricingBtn {
    display: block;
    width: 100%;
    text-align: center;
}

.formGroup {
    margin-bottom: 20px;
}

.formGroup label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.formGroup input,
.formGroup textarea,
.formGroup select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: inherit;
}

.formGroup textarea {
    min-height: 150px;
    resize: vertical;
}

.formSubmit {
    margin-top: 30px;
}

.error {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: 5px;
}

.success {
    padding: 15px;
    background-color: rgba(82, 183, 136, 0.2);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

/* Transformation Section Styles */
.transformationSection {
    background: linear-gradient(135deg, var(--light-shade) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.transformationSection::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(114, 9, 183, 0.05);
    z-index: 1;
}

.transformationSection::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(114, 9, 183, 0.05);
    z-index: 1;
}

.transformationWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.transformationContent {
    padding-right: 20px;
}

.transformationTitle {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.transformationTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.transformationDescription {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.transformationBenefits {
    list-style: none;
    margin-bottom: 40px;
}

.transformationBenefits li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
}

.benefitNumber {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
}

.transformationBtn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.transformationStats {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.statItem {
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.statItem:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.statItem:last-child {
    margin-bottom: 0;
}

.statNumber {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.statLabel {
    font-size: 1rem;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .transformationWrapper {
        grid-template-columns: 1fr;
    }

    .transformationContent {
        padding-right: 0;
    }
}

/* Contact Section Styles */
.contactSection {
    background-color: white;
    position: relative;
}

.contactWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contactInfo {
    padding-right: 30px;
}

.contactInfo h3 {
    margin-bottom: 20px;
    color: var(--dark-shade);
    font-size: 1.75rem;
}

.contactInfo > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contactDetail {
    display: flex;
    margin-bottom: 25px;
}

.contactIcon {
    width: 50px;
    height: 50px;
    background-color: var(--light-shade);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.contactText {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactText h4 {
    margin-bottom: 5px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.contactText p {
    margin: 0;
    color: var(--text-color);
}

.contactHours {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
}

.contactHours h4 {
    margin-bottom: 15px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.contactHours p {
    margin-bottom: 5px;
}

.contactForm {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.contactForm h3 {
    margin-bottom: 25px;
    color: var(--dark-shade);
    font-size: 1.75rem;
    text-align: center;
}

.formGroup {
    margin-bottom: 20px;
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-shade);
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-shade);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

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

.formPrivacy {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.formPrivacy input {
    margin-right: 10px;
    margin-top: 5px;
}

.formPrivacy label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.formPrivacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.formSubmitBtn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

@media screen and (max-width: 992px) {
    .contactWrapper {
        grid-template-columns: 1fr;
    }

    .contactInfo {
        padding-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .contactForm {
        padding: 30px 20px;
    }
}

.aboutHero {
    background: linear-gradient(to right, var(--primary-color), var(--dark-shade));
    color: white;
    padding: 100px 0;
}

.aboutHero .heroTitle,
.aboutHero .heroSubtitle {
    color: white;
}

.aboutIntro {
    padding-bottom: 50px;
}

.aboutWrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.aboutTitle {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.aboutTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

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

.aboutQuote {
    font-style: italic;
    padding: 20px;
    background-color: var(--light-shade);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    border-radius: var(--border-radius);
}

.aboutQuote cite {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-style: normal;
}

.aboutImage {
    position: relative;
}

.aboutImg {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.aboutImageCaption {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: var(--border-radius);
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.aboutValues {
    background-color: var(--light-shade);
}

.valuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.valueItem {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.valueItem:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.valueIcon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.valueItem h3 {
    margin-bottom: 15px;
    color: var(--dark-shade);
}

.teamIntro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.teamMembers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.teamMember {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.teamMember:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.teamMember h3 {
    margin-bottom: 5px;
    color: var(--dark-shade);
}

.teamRole {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.teamBio {
    line-height: 1.6;
}

.aboutAchievements {
    background: linear-gradient(to right, var(--primary-color), var(--dark-shade));
    color: white;
}

.aboutAchievements .sectionTitle h2 {
    color: white;
}

.aboutAchievements .sectionTitle h2:after {
    background-color: white;
}

.achievementsWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.achievementItem {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.achievementItem:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.achievementNumber {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievementLabel {
    font-size: 1.1rem;
}

.aboutCta {
    background-color: var(--light-shade);
}

.ctaContent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ctaContent h2 {
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.ctaContent p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ctaButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 992px) {
    .aboutWrapper {
        grid-template-columns: 1fr;
    }

    .aboutImage {
        order: -1;
        margin-bottom: 30px;
    }

    .aboutImageCaption {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 15px;
    }

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

    .ctaButtons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .aboutHero {
        padding: 80px 0;
    }

    .aboutTitle {
        font-size: 1.8rem;
    }

    .achievementNumber {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .valueItem,
    .teamMember {
        padding: 20px;
    }
}

.cookieContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    display: none;
    border-top: 4px solid var(--primary-color);
}

.cookieContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookieText {
    flex: 1;
    min-width: 300px;
}

.cookieText h3 {
    margin-bottom: 10px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.cookieText p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookieButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btnCookie {
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
}

.btnAccept {
    background-color: var(--primary-color);
    color: white;
}

.btnAccept:hover {
    background-color: var(--dark-shade);
}

.btnDecline {
    background-color: #eee;
    color: #333;
}

.btnDecline:hover {
    background-color: #ddd;
}

.btnSettings {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btnSettings:hover {
    background-color: var(--light-shade);
}

@media screen and (max-width: 768px) {
    .cookieContent {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookieButtons {
        width: 100%;
        justify-content: space-between;
    }

    .btnCookie {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .cookieButtons {
        flex-direction: column;
    }

    .btnCookie {
        width: 100%;
    }
}

/* Transformation Section Styles */
.transformationSection {
    background: linear-gradient(135deg, var(--light-shade) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.transformationSection::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(114, 9, 183, 0.05);
    z-index: 1;
}

.transformationSection::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(114, 9, 183, 0.05);
    z-index: 1;
}

.transformationWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.transformationContent {
    padding-right: 20px;
}

.transformationTitle {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.transformationTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.transformationDescription {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.transformationBenefits {
    list-style: none;
    margin-bottom: 40px;
}

.transformationBenefits li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
}

.benefitNumber {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
}

.transformationBtn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.transformationStats {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.statItem {
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.statItem:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.statItem:last-child {
    margin-bottom: 0;
}

.statNumber {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.statLabel {
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section Styles */
.contactSection {
    background-color: white;
    position: relative;
}

.contactWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contactInfo {
    padding-right: 30px;
}

.contactInfo h3 {
    margin-bottom: 20px;
    color: var(--dark-shade);
    font-size: 1.75rem;
}

.contactInfo > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contactDetail {
    display: flex;
    margin-bottom: 25px;
}

.contactIcon {
    width: 50px;
    height: 50px;
    background-color: var(--light-shade);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.contactText {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactText h4 {
    margin-bottom: 5px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.contactText p {
    margin: 0;
    color: var(--text-color);
}

.contactHours {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
}

.contactHours h4 {
    margin-bottom: 15px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.contactHours p {
    margin-bottom: 5px;
}

.contactForm {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.contactForm h3 {
    margin-bottom: 25px;
    color: var(--dark-shade);
    font-size: 1.75rem;
    text-align: center;
}

.formGroup {
    margin-bottom: 20px;
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-shade);
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-shade);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

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

.formPrivacy {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.formPrivacy input {
    margin-right: 10px;
    margin-top: 5px;
}

.formPrivacy label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.formPrivacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.formSubmitBtn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Thank You Page Styles */
.thankYouSection {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.thankYouContent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.thankYouIcon {
    width: 80px;
    height: 80px;
    background-color: var(--light-shade);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkmark {
    width: 30px;
    height: 60px;
    border-right: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    transform: rotate(45deg);
    margin-top: -15px;
}

.thankYouTitle {
    color: var(--dark-shade);
    margin-bottom: 20px;
}

.thankYouDescription {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.serviceConfirmation {
    background-color: var(--light-shade);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.serviceConfirmation p {
    margin: 0;
}

.thankYouActions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.thankYouNote {
    border-top: 1px solid #eee;
    padding-top: 30px;
    font-size: 0.95rem;
}

.contactInfo {
    margin-top: 10px;
}

/* Cookie Container Styles */
.cookieContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    display: none;
    border-top: 4px solid var(--primary-color);
}

.cookieContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookieText {
    flex: 1;
    min-width: 300px;
}

.cookieText h3 {
    margin-bottom: 10px;
    color: var(--dark-shade);
    font-size: 1.2rem;
}

.cookieText p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookieButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btnCookie {
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
}

.btnAccept {
    background-color: var(--primary-color);
    color: white;
}

.btnAccept:hover {
    background-color: var(--dark-shade);
}

.btnDecline {
    background-color: #eee;
    color: #333;
}

.btnDecline:hover {
    background-color: #ddd;
}

.btnSettings {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btnSettings:hover {
    background-color: var(--light-shade);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .transformationWrapper,
    .contactWrapper {
        grid-template-columns: 1fr;
    }

    .transformationContent,
    .contactInfo {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .cookieContent {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookieButtons {
        width: 100%;
        justify-content: space-between;
    }

    .btnCookie {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .thankYouContent {
        padding: 30px 20px;
    }

    .thankYouActions {
        flex-direction: column;
        gap: 10px;
    }

    .thankYouActions .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .contactForm {
        padding: 30px 20px;
    }

    .cookieButtons {
        flex-direction: column;
    }

    .btnCookie {
        width: 100%;
    }
}

.thankYouSection {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.thankYouContent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.thankYouIcon {
    width: 80px;
    height: 80px;
    background-color: var(--light-shade);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkmark {
    width: 30px;
    height: 60px;
    border-right: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    transform: rotate(45deg);
    margin-top: -15px;
}

.thankYouTitle {
    color: var(--dark-shade);
    margin-bottom: 20px;
}

.thankYouDescription {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.serviceConfirmation {
    background-color: var(--light-shade);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.serviceConfirmation p {
    margin: 0;
}

.thankYouActions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.thankYouNote {
    border-top: 1px solid #eee;
    padding-top: 30px;
    font-size: 0.95rem;
}

.contactInfo {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .thankYouContent {
        padding: 30px 20px;
    }

    .thankYouActions {
        flex-direction: column;
        gap: 10px;
    }

    .thankYouActions .btn {
        width: 100%;
    }
}