:root {
    --primary-color: #06d6a0;
    --light-shade: #e6faf5;
    --dark-shade: #048a65;
    --text-color: #048a65;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
}

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

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 9999px;
}

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

.btnPrimary, .btnSecondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

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

.btnSecondary {
    background-color: transparent;
    color: var(--primary-color);
}

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

.mainMenu {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.navbarBrand img {
    height: 40px;
    width: auto;
    border-radius: 0;
}

.navToggle {
    display: none;
}

.navToggleLabel {
    display: none;
}

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

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

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

.hamburger:after {
    top: 8px;
}

.navWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbarNav {
    display: flex;
    gap: 30px;
}

.navItem {
    list-style: none;
}

.navLink {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navLink:hover {
    color: var(--primary-color);
}

@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: var(--white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

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

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

    .navLink {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .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;
    }
}

.welcomeSection {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, var(--white) 100%);
}

.welcomeContent {
    display: flex;
    align-items: center;
    gap: 60px;
}

.welcomeContent > div {
    flex: 1;
}

.ctaButtons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.recipeCategoriesGrid {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.categoryCard {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: 9999px;
    text-align: center;
    transition: transform 0.3s ease;
}

.categoryCard:hover {
    transform: translateY(-5px);
}

.categoryCard img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

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

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

.treatsContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.treatItem {
    background-color: var(--white);
    padding: 25px;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.treatsBenefits ul {
    list-style: none;
}

.treatsBenefits li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

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

.weeklyMenuPlanner {
    padding: 80px 0;
    background-color: var(--white);
}

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

.plannerContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.plannerFeatures {
    display: grid;
    gap: 30px;
}

.featureBox {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: 9999px;
}

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

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

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

.serviceCard {
    background-color: var(--white);
    padding: 40px;
    border-radius: 9999px;
    text-align: center;
    position: relative;
}

.serviceCard.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.servicePrice {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.serviceCard ul {
    text-align: left;
    margin: 30px 0;
}

.serviceCard li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

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

.disclaimerSection {
    padding: 40px 0;
    background-color: var(--gray-light);
    border-top: 1px solid #dee2e6;
}

.disclaimerSection h3 {
    margin-bottom: 20px;
    text-align: center;
}

.disclaimerSection p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-medium);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mainFooter {
    background-color: var(--dark-shade);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footerInfo h4,
.footerLinks h4,
.footerLegal h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footerLinks ul,
.footerLegal ul {
    list-style: none;
}

.footerLinks a,
.footerLegal a {
    color: var(--light-shade);
    text-decoration: none;
    line-height: 1.8;
}

.footerLinks a:hover,
.footerLegal a:hover {
    color: var(--white);
}

.footerBottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--light-shade);
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .welcomeContent {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .treatsContent,
    .plannerContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .serviceCard.featured {
        transform: none;
    }

    .servicesGrid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .welcomeSection,
    .recipeCategoriesGrid,
    .popularKetoTreats,
    .weeklyMenuPlanner,
    .servicesSection {
        padding: 40px 0;
    }

    .categoriesGrid {
        grid-template-columns: 1fr;
    }

    .categoryCard img {
        width: 120px;
        height: 120px;
    }
}

.contactSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-shade) 0%, var(--primary-color) 50%, var(--light-shade) 100%);
    position: relative;
    overflow: hidden;
}

.contactSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contactWrapper {
    position: relative;
    z-index: 2;
}

.contactHeader {
    text-align: center;
    margin-bottom: 60px;
}

.contactHeader h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contactHeader p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contactFormContainer {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.formBackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 9999px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.floatingElement {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--light-shade));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floatingElement1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floatingElement2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floatingElement3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contactForm {
    position: relative;
    z-index: 3;
    padding: 50px;
}

.formStep {
    display: none;
    animation: slideIn 0.5s ease-out;
}

.formStep.activeStep {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.stepHeader {
    text-align: center;
    margin-bottom: 40px;
}

.stepNumber {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.stepHeader h3 {
    color: var(--dark-shade);
    margin-bottom: 0;
}

.inputGroup {
    position: relative;
    margin-bottom: 40px;
}

.inputGroup input,
.inputGroup textarea {
    width: 100%;
    padding: 20px 0 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    color: var(--dark-shade);
    outline: none;
    transition: all 0.3s ease;
}

.inputGroup label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.inputGroup input:focus,
.inputGroup input:valid,
.inputGroup textarea:focus,
.inputGroup textarea:valid {
    border-bottom-color: var(--primary-color);
}

.inputGroup input:focus + label,
.inputGroup input:valid + label,
.inputGroup textarea:focus + label,
.inputGroup textarea:valid + label {
    top: 0;
    font-size: 12px;
    color: var(--primary-color);
}

.inputLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-shade));
    transition: width 0.3s ease;
}

.inputGroup input:focus ~ .inputLine,
.inputGroup textarea:focus ~ .inputLine {
    width: 100%;
}

.serviceGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.serviceOption {
    position: relative;
}

.serviceOption input[type="radio"] {
    display: none;
}

.serviceOption label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.serviceOption label:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.2);
}

.serviceOption input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--light-shade), var(--white));
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.serviceIcon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    margin-right: 20px;
    font-size: 1.2rem;
}

.serviceOption span {
    flex: 1;
    font-weight: 600;
    color: var(--dark-shade);
}

.serviceOption small {
    color: var(--primary-color);
    font-weight: 500;
}

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

.btnNext,
.btnBack,
.btnSubmit {
    padding: 15px 40px;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btnNext,
.btnSubmit {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.btnNext:hover,
.btnSubmit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 214, 160, 0.5);
}

.btnBack {
    background: transparent;
    color: var(--dark-shade);
    border: 2px solid var(--dark-shade);
}

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

.progressBar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.progressFill {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-shade));
    border-radius: 2px;
    width: 33.33%;
    transition: width 0.5s ease;
}

.progressSteps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.progressStep {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.progressStep.active {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.5);
}

.textareaGroup textarea {
    min-height: 100px;
    resize: vertical;
}

@media screen and (max-width: 768px) {
    .contactHeader h2 {
        font-size: 2rem;
    }

    .contactForm {
        padding: 30px 20px;
    }

    .stepButtons {
        flex-direction: column;
    }

    .btnNext,
    .btnBack,
    .btnSubmit {
        width: 100%;
    }
}

.personalJourneySection {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, var(--white) 50%, var(--light-shade) 100%);
}

.journeyWrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.journeyHeader {
    text-align: center;
    margin-bottom: 60px;
}

.journeyHeader h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.journeySubtitle {
    font-size: 1.3rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.journeyTimeline {
    position: relative;
}

.journeyTimeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--dark-shade));
}

.timelineItem {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timelineDate {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.timelineContent {
    background: var(--white);
    padding: 30px;
    border-radius: 9999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timelineContent::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--white);
}

.journeyVisual {
    position: relative;
}

.visualCard {
    position: relative;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cardOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 40px 30px 30px;
    text-align: center;
}

.ketoExpertiseSection {
    padding: 100px 0;
    background: var(--white);
}

.expertiseHeader {
    text-align: center;
    margin-bottom: 80px;
}

.expertiseHeader h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.expertiseGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.expertiseCard {
    background: var(--light-shade);
    padding: 50px 40px;
    border-radius: 9999px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.expertiseCard:hover {
    transform: translateY(-10px);
}

.expertiseCard.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    transform: scale(1.05);
}

.expertiseIcon {
    margin-bottom: 30px;
}

.iconCircle {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(6, 214, 160, 0.4);
}

.expertiseCard.featured .iconCircle {
    background: var(--white);
    color: var(--primary-color);
}

.expertiseStats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(6, 214, 160, 0.3);
}

.expertiseStats span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.expertiseCard.featured .expertiseStats span {
    color: var(--white);
}

.recipeDevelopmentSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-shade) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.developmentContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.developmentText h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.processSteps {
    margin-top: 50px;
}

.processStep {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.stepNumber {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stepDetails h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.developmentVisual {
    position: relative;
}

.visualGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transform: rotate(5deg);
}

.visualGrid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gridImg1 {
    transform: translateY(20px);
}

.gridImg2 {
    transform: translateY(-20px);
}

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

.standardsHeader {
    text-align: center;
    margin-bottom: 80px;
}

.standardsContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.standardsMetrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.metricCard {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 9999px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.metricValue {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metricLabel {
    color: var(--dark-shade);
    font-weight: 500;
}

.qualityPromise {
    background: var(--white);
    padding: 50px;
    border-radius: 9999px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.promiseList {
    margin-top: 30px;
}

.promiseItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.promiseIcon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .journeyWrapper,
    .developmentContent,
    .standardsContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journeyHeader h1 {
        font-size: 2.5rem;
    }

    .timelineItem {
        padding-left: 60px;
    }

    .expertiseGrid {
        grid-template-columns: 1fr;
    }

    .standardsMetrics {
        grid-template-columns: 1fr;
    }

    .visualGrid {
        transform: none;
    }
}

.thankyouSection {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, var(--white) 50%, var(--primary-color) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.successAnimation {
    margin-bottom: 50px;
}

.checkmarkCircle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    margin: 0 auto;
    position: relative;
    animation: scaleIn 0.8s ease-out;
    box-shadow: 0 20px 60px rgba(6, 214, 160, 0.4);
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 50px;
    border: solid var(--white);
    border-width: 0 6px 6px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    animation: checkmarkDraw 0.5s ease-out 0.8s both;
}

@keyframes scaleIn {
    0% { transform: scale(0) rotate(180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes checkmarkDraw {
    0% { height: 0; }
    100% { height: 50px; }
}

.thankyouContent h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.thankyouSubtitle {
    font-size: 1.3rem;
    color: var(--gray-medium);
    margin-bottom: 50px;
}

.nextStepsBox {
    background: var(--white);
    padding: 50px;
    border-radius: 9999px;
    margin: 50px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.nextStepsBox h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-shade);
}

.stepsList {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nextStep {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.stepIcon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.stepContent h4 {
    color: var(--dark-shade);
    margin-bottom: 10px;
}

.stepContent p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.bonusSection {
    margin: 50px 0;
}

.bonusCard {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-shade));
    color: var(--white);
    padding: 40px;
    border-radius: 9999px;
    box-shadow: 0 20px 60px rgba(6, 214, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.bonusCard::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bonusCard h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

@media screen and (max-width: 768px) {
    .thankyouContent h1 {
        font-size: 2rem;
    }

    .nextStepsBox {
        padding: 30px 20px;
    }

    .stepsList {
        gap: 20px;
    }

    .nextStep {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

.cookieDisclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-shade), var(--primary-color));
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

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

.cookieContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookieText {
    flex: 1;
}

.cookieText h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookieText p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.cookieActions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btnCookieAccept,
.btnCookieReject {
    padding: 12px 25px;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.btnCookieAccept:hover {
    background: var(--light-shade);
    transform: translateY(-2px);
}

.btnCookieReject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.cookieLearnMore {
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.8;
}

.cookieLearnMore:hover {
    opacity: 1;
}

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

    .cookieActions {
        flex-direction: column;
        width: 100%;
    }

    .btnCookieAccept,
    .btnCookieReject {
        width: 100%;
    }
}