/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7fb8;
    --accent-color: #f39c12;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: #fff;
}

.btn-accept:hover {
    background: #e67e22;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Header & Navigation */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--accent-color);
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-scroll {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-visual {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-visual img {
    width: 100%;
}

/* Page Hero */
.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Narrow Column Sections */
.narrow-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.narrow-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

/* Curiosity Hook */
.curiosity-hook {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

/* Problem Amplify */
.problem-amplify {
    padding: 4rem 2rem;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.problem-list {
    margin-top: 1.5rem;
}

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-size: 1.5rem;
    font-weight: bold;
}

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

/* Insight Reveal */
.insight-reveal {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 2rem;
}

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

.centered-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.centered-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.narrative-flow p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: var(--dark-text);
}

/* Trust Builder */
.trust-builder {
    padding: 4rem 2rem;
}

.proof-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.proof-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

.proof-item p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Testimonial Inline */
.testimonial-inline {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Benefits Cascade */
.benefits-cascade {
    padding: 4rem 2rem;
}

.benefit-row {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-row.reverse {
    flex-direction: column;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.benefit-visual {
    flex: 1;
}

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

/* CTA Blocks */
.cta-block-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Social Proof Extended */
.social-proof-extended {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.social-proof-extended h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-item span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Urgency Section */
.urgency-soft {
    padding: 4rem 2rem;
}

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

.urgency-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

/* Services & Pricing */
.services-pricing {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.price-note {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-description {
    margin-bottom: 1.5rem;
}

.service-description p {
    color: var(--light-text);
    line-height: 1.7;
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-text);
}

.features-list,
.best-for-list {
    margin-bottom: 1.5rem;
}

.features-list li,
.best-for-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--dark-text);
}

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

.best-for-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.select-service {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

.form-intro span {
    font-weight: 600;
    color: var(--accent-color);
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.final-message h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-message p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.btn-final-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: var(--dark-text);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

/* About Page Specific */
.about-story,
.approach-section,
.values-section,
.results-showcase,
.team-section {
    padding: 4rem 2rem;
}

.story-content,
.approach-content,
.values-content,
.results-content,
.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2,
.approach-content h2,
.values-content h2,
.results-content h2,
.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content p,
.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.approach-section {
    background: var(--bg-light);
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.approach-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.values-list {
    margin-top: 2rem;
}

.values-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.results-showcase {
    background: var(--primary-color);
    color: #fff;
}

.results-content h2 {
    color: #fff;
}

.stats-display {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-about {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

/* Services Page Specific */
.services-intro {
    padding: 4rem 2rem;
}

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

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.comparison-section,
.guarantee-section,
.faq-section {
    padding: 4rem 2rem;
}

.comparison-section {
    background: var(--bg-white);
}

.comparison-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-guide {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.guide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guide-item ul {
    margin-top: 1rem;
}

.guide-item li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--dark-text);
}

.guide-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.guarantee-section {
    background: var(--bg-light);
    text-align: center;
}

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

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.faq-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

/* Contact Page Specific */
.contact-info-section {
    padding: 4rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-card a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

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

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

/* Thanks Page Specific */
.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #27ae60 100%);
    color: #fff;
    text-align: center;
}

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

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-details,
.thanks-preparation,
.thanks-support,
.thanks-social {
    padding: 4rem 2rem;
}

.details-content,
.preparation-content,
.support-content,
.social-content {
    max-width: 900px;
    margin: 0 auto;
}

.details-content h2,
.preparation-content h2,
.support-content h2,
.social-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.thanks-preparation {
    background: var(--bg-light);
}

.preparation-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.preparation-list {
    max-width: 700px;
    margin: 0 auto;
}

.preparation-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

.support-content {
    text-align: center;
}

.support-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.email-highlight {
    font-size: 1.3rem;
    font-weight: 600;
}

.email-highlight a {
    color: var(--secondary-color);
}

.thanks-social {
    background: var(--bg-light);
    text-align: center;
}

.social-content p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Legal Pages */
.legal-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-hero p {
    opacity: 0.9;
}

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

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

.content-wrapper h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

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

.content-wrapper ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-wrapper ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--light-text);
}

.content-wrapper strong {
    color: var(--dark-text);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--light-text);
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .proof-grid {
        flex-direction: row;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .pricing-cards {
        flex-direction: row;
        align-items: stretch;
    }

    .pricing-card {
        flex: 1;
    }

    .benefit-row {
        flex-direction: row;
        align-items: center;
    }

    .benefit-row.reverse {
        flex-direction: row-reverse;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .stats-display {
        flex-direction: row;
    }

    .comparison-guide {
        flex-direction: row;
    }

    .guide-item {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

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

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

    .price {
        font-size: 2.5rem;
    }

    .stat {
        font-size: 2.5rem;
    }

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