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

:root {
    --primary-color: #c54c1f;
    --primary-dark: #8b3515;
    --secondary-color: #2d2416;
    --accent-color: #e8a87c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.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;
    color: white;
    max-width: 900px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(197, 76, 31, 0.3);
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(197, 76, 31, 0.4);
}

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

.story-hook h2 {
    font-size: 38px;
    margin-bottom: 35px;
    line-height: 1.3;
    color: var(--secondary-color);
}

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

.story-insight {
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
    padding: 40px;
    margin: 50px 0;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

.insight-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
    line-height: 1.5;
}

.problem-amplify {
    padding: 90px 0;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 18px 0 18px 40px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 22px;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-build {
    padding: 100px 0;
    background: var(--bg-white);
}

.trust-build h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--secondary-color);
}

.trust-build p {
    font-size: 19px;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-inline {
    background: var(--secondary-color);
    color: white;
    padding: 40px 50px;
    margin: 50px 0;
    border-radius: 8px;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.testimonial-inline:before {
    content: """;
    font-size: 80px;
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.3;
}

.cta-inline-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin: 80px 0;
}

.cta-inline-block p {
    font-size: 24px;
    margin-bottom: 25px;
}

.btn-cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.insight-reveal {
    padding: 100px 0;
    background: var(--bg-light);
}

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

.principle-card {
    background: white;
    padding: 45px;
    margin-bottom: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    padding-left: 120px;
}

.principle-number {
    position: absolute;
    left: 35px;
    top: 40px;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
}

.principle-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.principle-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-flow {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-flow h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

.testimonial-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-visual {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-visual h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

.benefit-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

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

.benefit-img {
    flex: 1;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.benefit-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cta-sticky.visible {
    transform: translateY(0);
}

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

.cta-sticky-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.btn-cta-sticky {
    background: var(--primary-color);
    color: white;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-sticky:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.services-pricing {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-pricing h2 {
    font-size: 42px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 320px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.service-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.service-features span {
    font-size: 14px;
    color: var(--text-light);
}

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

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

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.form-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--secondary-color);
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

.form-group input[readonly] {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-block {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
}

.urgency-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.urgency-content p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 19px;
}

.guarantee {
    padding: 100px 0;
    background: var(--bg-white);
}

.guarantee h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.guarantee-item p {
    font-size: 16px;
    color: var(--text-light);
}

.final-cta {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 20px 60px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 36, 22, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.thanks-page {
    padding: 140px 0 100px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-detail {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.thanks-next {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin: 50px auto;
    max-width: 600px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.services-grid {
    padding: 80px 0;
}

.why-us-products {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-us-products h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.why-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.why-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 10px;
}

.why-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.about-story {
    padding: 80px 0;
}

.story-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-story h3 {
    font-size: 28px;
    margin: 50px 0 25px;
    color: var(--secondary-color);
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-quote {
    background: var(--bg-light);
    padding: 35px 40px;
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 6px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.about-cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info {
    padding: 80px 0;
}

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

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-map h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
}

.map-placeholder {
    background: white;
    padding: 100px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-faq {
    padding: 80px 0;
}

.contact-faq h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.legal-page {
    padding: 100px 0;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin: 50px 0 20px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--border-color);
}

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

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

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .split-content,
    .benefit-row {
        flex-direction: column;
    }

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

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

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

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

    .cta-sticky-content {
        flex-direction: column;
        gap: 15px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .contact-grid,
    .why-grid,
    .guarantee-grid,
    .values-grid {
        flex-direction: column;
    }

    .why-item,
    .value-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .story-hook h2,
    .trust-build h2,
    .insight-reveal h2,
    .services-pricing h2 {
        font-size: 28px;
    }

    .principle-card {
        padding-left: 35px;
    }

    .principle-number {
        position: static;
        display: block;
        margin-bottom: 15px;
    }
}