:root {
    --color-primary: #E0F7FA;
    --color-secondary: #FCE4EC;
    --color-accent: #FFD54F;
    --color-background: #FFFFFF;
    --color-text: #2C3E50;
    --color-text-light: #5A6C7D;
    --font-heading: 'Tenor Sans', sans-serif;
    --font-main: 'Montserrat', sans-serif;
    --radius: 20px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
    --spacing: 2rem;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    background: var(--color-background);
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: var(--transition);
    pointer-events: auto;
    position: relative;
}

.burger-menu span {
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.liquid-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    pointer-events: none;
}

.liquid-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

.liquid-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: -50px;
    right: -50px;
}

.liquid-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--color-accent);
    top: 50%;
    right: 10%;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.8;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius);
    width: fit-content;
    box-shadow: var(--shadow);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.hero-product {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper {
    position: relative;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.hero-order {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.old-price {
    font-size: 1.5rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(224, 247, 250, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.checkbox-group label a {
    color: var(--color-primary);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    display: none;
}

.error-message.show {
    display: block;
}

.cta-button,
.cta-button-secondary {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent), #FFB74D);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    z-index: 10;
    pointer-events: auto;
}

.cta-button::before,
.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.cta-button-secondary:hover::before {
    left: 100%;
}

.cta-button:hover,
.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.features-section {
    background: linear-gradient(180deg, var(--color-background), var(--color-primary));
    padding: 6rem 0;
}

.synergy-wheel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-droplet {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    z-index: 1;
}

.feature-droplet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary), transparent);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    opacity: 0;
}

.feature-droplet:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

.feature-droplet:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.droplet-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-droplet h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-droplet p {
    color: var(--color-text-light);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefits-section {
    background: var(--color-background);
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(224, 247, 250, 0.5);
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.description-section {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    padding: 6rem 0;
}

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

.description-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.usage-section {
    background: var(--color-background);
    padding: 6rem 0;
}

.usage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.usage-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    pointer-events: auto;
    z-index: 1;
}

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

.usage-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    color: var(--color-text);
}

.usage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.usage-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.ingredients-section {
    background: linear-gradient(180deg, var(--color-secondary), var(--color-background));
    padding: 6rem 0;
}

.ingredients-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    min-height: 300px;
    align-items: center;
}

.ingredient-item {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.ingredient-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    pointer-events: auto;
}

.ingredients-description {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.ingredients-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.reviews-section {
    background: var(--color-background);
    padding: 6rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-stars {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-author {
    font-weight: 500;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-section {
    background: linear-gradient(180deg, var(--color-background), var(--color-primary));
    padding: 6rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.faq-question:hover {
    background: rgba(224, 247, 250, 0.3);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--color-text);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.main-footer {
    background: var(--color-text);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--color-text);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-text);
    background: transparent;
    color: var(--color-text);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    transition: var(--transition);
    z-index: 2002;
    pointer-events: auto;
    position: relative;
}

.cookie-btn.accept-all {
    background: var(--color-text);
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 2001;
    max-width: 500px;
    width: 90%;
    transition: transform 0.3s ease-out;
}

.cookie-settings.show {
    transform: translate(-50%, -50%) scale(1);
}

.settings-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    color: var(--color-text);
}

.setting-item {
    margin-bottom: 1.5rem;
}

.setting-item label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--color-text);
}

.setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.4s ease-out;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .synergy-wheel {
        grid-template-columns: 1fr;
    }

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

    .usage-content {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-order {
        padding: 2rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.policy-section {
    padding: 8rem 0 4rem;
    background: var(--color-background);
    min-height: 100vh;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
}

.policy-date {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

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

.policy-content a:hover {
    text-decoration: underline;
}

.thank-you-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--color-primary), var(--color-background));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    animation: scale-in 0.5s ease-out;
}

@keyframes scale-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.thank-you-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .thank-you-content {
        padding: 3rem 2rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }
}

