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

:root {
    --primary: #D4A574;
    --primary-dark: #B88A5E;
    --secondary: #2C3E50;
    --text: #333333;
    --text-light: #666666;
    --bg: #FFFFFF;
    --bg-gray: #F8F9FA;
    --bg-dark: #1A1A1A;
    --accent: #E8B86D;
}

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

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

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

.main-nav {
    position: sticky;
    top: 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 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s;
}

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

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

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

.hero-story {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23D4A574" width="1200" height="800"/><path fill="%23B88A5E" d="M0 400 Q300 200 600 400 T1200 400 V800 H0 Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-overlay {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: var(--primary);
    color: #FFFFFF;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.story-intro {
    padding: 100px 20px;
    background: var(--bg);
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 500;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: var(--text);
}

.story-highlight {
    background: var(--bg-gray);
    border-left: 4px solid var(--primary);
    padding: 30px;
    margin: 40px 0;
}

.story-highlight p {
    font-size: 21px;
    line-height: 1.6;
    color: var(--secondary);
}

.visual-break {
    padding: 80px 20px;
    background: var(--secondary);
}

.stat-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 800;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.5;
}

.problem-amplification {
    padding: 100px 20px;
    background: var(--bg-gray);
}

.problem-amplification h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
    line-height: 1.3;
}

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

.problem-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg);
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary);
}

.problem-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.cta-inline {
    text-align: center;
    padding: 40px 0;
}

.cta-inline p {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary);
    color: #FFFFFF;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a2633;
    transform: translateY(-2px);
}

.trust-signal {
    padding: 80px 20px;
    background: var(--bg);
}

.testimonial {
    border-left: 4px solid var(--primary);
    padding: 40px 50px;
    background: var(--bg-gray);
    font-style: italic;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a, #2C3E50);
}

.insight-reveal h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.insight-box {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 50px 40px;
    background: rgba(212, 165, 116, 0.15);
    border: 2px solid var(--primary);
    border-radius: 10px;
}

.insight-main {
    font-size: 28px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.insight-box p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.insight-details {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.detail-block {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.detail-block h4 {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 15px;
}

.detail-block p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

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

.social-proof h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.method-preview {
    padding: 100px 20px;
    background: var(--bg);
}

.method-preview h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 70px;
    color: var(--secondary);
}

.steps-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 35px 25px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

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

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

.urgency-block {
    padding: 80px 20px;
    background: var(--secondary);
}

.urgency-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.3;
}

.urgency-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 30px;
}

.services-reveal {
    padding: 100px 20px;
    background: var(--bg-gray);
}

.services-reveal h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 25px;
    color: var(--secondary);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-pricing {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg);
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

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

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

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

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

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
}

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

.service-price {
    text-align: center;
    margin-bottom: 25px;
}

.price {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

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

.btn-service:hover {
    background: #1a2633;
}

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

.form-section h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-gray);
    padding: 50px 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    font-size: 14px;
}

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

.checkbox-group a {
    color: var(--primary);
}

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

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

.final-push {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
    text-align: center;
}

.final-push h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 30px;
    color: var(--secondary);
}

.final-push p {
    font-size: 19px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.final-cta-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 40px;
}

.btn-final {
    display: inline-block;
    background: var(--primary);
    color: #FFFFFF;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

.btn-final:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5);
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.sticky-btn {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    background: var(--primary);
    color: #FFFFFF;
    text-align: center;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px 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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

.btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-header {
    background: linear-gradient(135deg, var(--secondary), #1a2633);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 48px);
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

.about-content h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 30px;
    margin-top: 40px;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    margin-top: 50px;
}

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

.approach-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
}

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

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-box {
    background: var(--bg-gray);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

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

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

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text);
}

.services-guarantee {
    max-width: 800px;
    margin: 80px auto;
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.services-guarantee h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.services-guarantee p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 15px;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 6px;
    margin-top: 40px;
}

.info-note p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

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

.contact-form-wrapper h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-page {
    padding: 100px 20px;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: clamp(32px, 5vw, 42px);
    color: var(--secondary);
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.next-steps {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 25px;
    text-align: center;
}

.next-steps ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 15px;
}

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

.btn-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 16px 40px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-link:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.thanks-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
}

.thanks-contact p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.thanks-contact a:hover {
    text-decoration: underline;
}

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

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

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

.legal-content .last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 15px;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--secondary);
}

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

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

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

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

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

    .hero-content h1 {
        font-size: 32px;
    }

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

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

    .steps-flow {
        flex-direction: column;
    }

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

    .problem-item {
        min-width: 100%;
    }

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

    .insight-details {
        flex-direction: column;
    }

    .stat-cards {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .approach-list {
        flex-direction: column;
    }

    .approach-item {
        min-width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-link,
    .btn-secondary {
        text-align: center;
    }
}
