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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-alt: #ecf0f1;
    --border-color: #ddd;
    --white: #ffffff;
    --success: #27ae60;
    --warning: #f39c12;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

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

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

a:hover {
    opacity: 0.8;
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--accent-color);
}

.story-flow {
    background: var(--white);
}

.story-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(52,73,94,0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23222" width="100" height="100"/></svg>');
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    font-style: italic;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
    border-radius: 8px;
}

.story-section {
    padding: 4rem 0;
}

.story-section.alt-bg {
    background: var(--bg-alt);
}

.story-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.story-section h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    font-weight: normal;
    color: var(--primary-color);
}

.story-section h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    font-weight: normal;
}

.story-section h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.story-section p {
    margin-bottom: 1.5rem;
}

.story-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.inline-cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.inline-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.3);
    opacity: 1;
}

.section-cta {
    display: inline-block;
    margin: 2.5rem 0;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}

.section-cta:hover {
    transform: scale(1.05);
    opacity: 1;
}

.insight-block {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.insight-block p {
    margin-bottom: 1rem;
}

.insight-block p:last-child {
    margin-bottom: 0;
}

.process-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.process-step h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.process-step p {
    margin-bottom: 0;
}

.testimonial-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
}

.testimonial-inline {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

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

.service-price {
    margin: 2rem 0 1.5rem;
    text-align: center;
    padding: 1.5rem 0;
    background: var(--bg-light);
    border-radius: 6px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    display: block;
}

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

.btn-primary {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.btn-primary:hover {
    background: #c0392b;
    transform: scale(1.02);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}

.btn-primary-large:hover {
    transform: scale(1.05);
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    opacity: 1;
}

.guarantee-box {
    background: #fff9e6;
    border: 2px solid var(--warning);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 6px;
}

.guarantee-box h3 {
    margin-top: 0;
    color: var(--warning);
}

.mistakes-list {
    margin: 2rem 0;
}

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

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

.mistake-item h4 {
    color: var(--accent-color);
}

.form-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

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

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

.checkbox-group label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-weight: normal;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--success);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #229954;
}

.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

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

.sticky-text {
    color: var(--white);
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    opacity: 1;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,62,80,0.98);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.selection-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.guide-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.guide-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.guide-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

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

.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.level-badge {
    background: var(--bg-alt);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.service-what-includes,
.service-results {
    margin: 2rem 0;
}

.service-what-includes h4,
.service-results h4 {
    margin-bottom: 1rem;
}

.service-what-includes ul,
.service-results ul {
    list-style: none;
    padding: 0;
}

.service-what-includes li,
.service-results li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.5;
}

.service-what-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-results li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-pricing {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.price-main {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.price-detail {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.differentiators {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.diff-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.diff-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.faq-list {
    margin: 2rem 0;
}

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

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

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-form-wrapper {
    flex: 1;
}

.form-description {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.faq-compact {
    margin: 2rem 0;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-hero {
    padding: 5rem 0;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-lead {
    font-size: 1.3rem;
    margin: 2rem 0;
    color: var(--text-light);
}

.selected-service-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

.service-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.step-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.timeline-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

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

.thanks-actions {
    margin: 3rem 0;
}

.thanks-actions h3 {
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thanks-note {
    background: #fff9e6;
    padding: 2rem;
    border-radius: 6px;
    margin: 3rem 0;
    border-left: 4px solid var(--warning);
}

.thanks-note p {
    margin-bottom: 1rem;
}

.thanks-note p:last-child {
    margin-bottom: 0;
}

.testimonial-while-waiting {
    text-align: left;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-style: italic;
    margin: 0;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.team-insight {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
    border-left: 4px solid var(--success);
}

.team-insight h3 {
    margin-top: 0;
    color: var(--success);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin: 0;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.promises-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.promise-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.promise-item h4 {
    margin: 0 0 1rem;
    color: var(--accent-color);
}

.promise-item p {
    margin: 0;
}

.final-about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.legal-page {
    background: var(--white);
    padding: 3rem 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-section h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-color);
}

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

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: 0.7rem;
}

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

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

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .story-section h2 {
        font-size: 1.8rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons a {
        width: 100%;
        text-align: center;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) {
    .stats-grid,
    .testimonials-grid {
        flex-direction: row;
    }

    .stat-item,
    .testimonial-card {
        flex: 1;
    }

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