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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4299e1;
    --accent-color: #f6ad55;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.btn-cookie-accept:hover {
    background-color: #38a169;
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-cta:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: slideInUp 0.3s ease;
}

.sticky-cta button {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(246, 173, 85, 0.4);
}

.sticky-cta button:hover {
    background-color: #ed8936;
    transform: scale(1.05);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-story {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-content-narrow h1 {
    color: white;
    font-size: 2.75rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 0;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.section-text-focused {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.text-large {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-light);
}

.section-problem-amplification {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

.problem-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: 700;
    font-size: 1.3rem;
}

.section-insight {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.insight-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.insight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.insight-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.section-story-continuation {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.quote-large {
    font-size: 1.5rem;
    font-style: italic;
    border-left: 5px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 3rem 0;
    color: var(--primary-color);
    line-height: 1.6;
}

.section-cta-inline {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.cta-box-centered {
    text-align: center;
    background-color: var(--bg-light);
    padding: 3.5rem 2rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-centered h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(66, 153, 225, 0.3);
}

.btn-large:hover {
    background-color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
    color: white;
}

.btn-large-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(246, 173, 85, 0.3);
}

.btn-large-secondary:hover {
    background-color: #ed8936;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(246, 173, 85, 0.4);
    color: white;
}

.section-testimonials-inline {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 1rem;
}

.section-science-backed {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.science-col-left {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.science-col-right {
    flex: 1;
    min-width: 300px;
}

.science-col-right img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.section-transformation {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.75rem;
    top: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
}

.section-cta-urgency {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.cta-urgency-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(245, 101, 101, 0.3);
    text-align: center;
}

.cta-urgency-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cost-list {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin: 2rem auto;
    max-width: 600px;
}

.cost-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cost-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.section-products-reveal {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.products-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card-featured {
    border: 3px solid var(--accent-color);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.product-price {
    padding: 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price-old {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-features {
    padding: 0 1.5rem;
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.btn-product {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.btn-product:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

.section-form {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.form-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-checkbox {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(246, 173, 85, 0.3);
}

.btn-submit:hover {
    background-color: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 173, 85, 0.4);
}

.section-guarantee {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.section-guarantee h3 {
    color: var(--success-color);
    font-size: 1.75rem;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.page-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 4rem 2rem;
}

.about-story img {
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.philosophy-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.philosophy-item h3 {
    color: var(--secondary-color);
}

.trust-list {
    list-style: none;
    padding-left: 0;
}

.trust-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.15rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.15rem;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.services-section {
    padding: 4rem 2rem;
}

.services-benefits {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.cta-text-center {
    text-align: center;
    margin-top: 3rem;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

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

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

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.image-caption {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-faq {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-cta {
    padding: 4rem 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-box {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.thanks-steps {
    margin-top: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    text-align: left;
}

.step-number {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.thanks-info-box {
    background-color: #e6fffa;
    border-left: 4px solid var(--success-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: left;
}

.thanks-info-box h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thanks-info-box ul {
    margin: 0;
}

.thanks-product-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-product-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    color: white;
}

.btn-link {
    display: inline-block;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

.thanks-tips {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 3rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 2rem;
    color: var(--secondary-color);
}

.legal-page ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.legal-page ol > li {
    counter-increment: item;
    margin-bottom: 1rem;
}

.legal-page ol > li:before {
    content: counter(item) ". ";
    font-weight: 700;
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .content-wide {
        display: flex;
        flex-direction: column;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.15rem;
    }

    .quote-large {
        font-size: 1.25rem;
        padding-left: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.5rem;
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

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

    .benefit-item,
    .philosophy-item,
    .tip-item {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-minimal {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-icon {
        font-size: 3.5rem;
    }

    .thanks-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}
