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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #e8a87c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --accent-gold: #d4af37;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-white);
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 600px;
    width: 90%;
}

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

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.pulse-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(44, 95, 79, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: white;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-subtext {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-cta:hover {
    transform: scale(1.05);
}

.story-hook {
    padding: 100px 20px;
    background: var(--background-white);
}

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

.opening-line {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-hook p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-light);
}

.emphasis-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.problem-amplification {
    padding: 120px 20px;
    background: var(--background-light);
}

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

.problem-amplification h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.insight-reveal {
    padding: 120px 20px;
    background: var(--background-white);
}

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

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

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.inline-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

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

.insight-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.social-proof {
    padding: 100px 20px;
    background: var(--background-light);
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
    background: var(--primary-color);
    color: white;
    padding: 50px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.8;
}

.science-backed {
    padding: 120px 20px;
    background: var(--background-white);
}

.science-backed h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.science-backed p {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.transformation-story {
    padding: 100px 20px;
    background: var(--background-light);
}

.story-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.story-layout img {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.urgency-moment {
    padding: 80px 20px;
    background: var(--primary-color);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.urgency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-reveal {
    padding: 120px 20px;
    background: var(--background-white);
}

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card.premium {
    border: 3px solid var(--accent-gold);
    background: linear-gradient(135deg, #fffdf7 0%, #fff9e6 100%);
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-tag.gold {
    background: var(--accent-gold);
    color: white;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #234a3d;
}

.service-btn.premium-btn {
    background: var(--accent-gold);
}

.service-btn.premium-btn:hover {
    background: #c29d2f;
}

.guarantee-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.guarantee-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.guarantee-note {
    font-weight: 600;
    color: var(--text-dark);
}

.form-section {
    padding: 120px 20px;
    background: var(--background-white);
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.wellness-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 20px;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.form-notice.selected {
    background: #d4edda;
    color: #155724;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover:not(:disabled) {
    background: #234a3d;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-push {
    padding: 100px 20px;
    background: var(--background-light);
}

.final-push h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.final-push p {
    font-size: 1.15rem;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.final-cta {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    transform: scale(1.05);
}

.page-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #234a3d 100%);
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 20px;
}

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

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.mission-statement {
    background: var(--background-light);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.mission-statement h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-light);
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-block {
    text-align: center;
    margin-top: 80px;
}

.cta-block h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.services-page {
    padding: 80px 20px;
}

.service-detail-card {
    max-width: 800px;
    margin: 0 auto 60px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
}

.service-detail-card.premium-card {
    border: 3px solid var(--accent-gold);
    background: linear-gradient(135deg, #fffdf7 0%, #fff9e6 100%);
}

.service-detail-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.savings {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-left: 10px;
}

.service-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.service-detail-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-card ul li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
}

.service-detail-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-action-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 20px;
    transition: transform 0.3s;
}

.service-action-btn:hover {
    transform: scale(1.05);
}

.service-action-btn.premium {
    background: var(--accent-gold);
}

.guarantee-banner {
    padding: 60px 20px;
    background: var(--primary-color);
    text-align: center;
}

.guarantee-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.guarantee-banner p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.95;
}

.contact-page {
    padding: 80px 20px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
}

.cta-section {
    padding: 80px 20px;
    background: var(--background-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #234a3d 100%);
    color: white;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    width: 100px;
    height: 100px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 20px;
}

.thanks-info-card {
    background: var(--background-light);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.thanks-info-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.timeline-step {
    margin-bottom: 30px;
}

.timeline-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.selected-service-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.selected-service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.thanks-support h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-support p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-cta {
    text-align: center;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.legal-page {
    padding: 150px 20px 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.cookies-table thead {
    background: var(--background-light);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .pulse-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .problem-grid {
        flex-direction: column;
    }

    .split-layout {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .story-layout {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .cookies-table {
        font-size: 0.9rem;
    }
}