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

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a86b;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

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

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

.narrow-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    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: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-overlay {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 60px;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 21px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #0052a3;
}

.story-intro {
    padding: 90px 20px;
    background: white;
}

.story-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--dark);
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

.story-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.split-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 20px;
    background: var(--light);
}

.split-left,
.split-right {
    flex: 1;
    min-width: 300px;
}

.split-left {
    padding-right: 40px;
}

.split-right {
    padding-left: 40px;
}

.split-left img,
.split-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.split-right h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark);
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    padding: 12px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid var(--border);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.problem-amplification {
    padding: 90px 20px;
    background: white;
}

.problem-amplification h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.cost-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.cost-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.cost-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.cost-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.insight-reveal {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.insight-reveal h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--dark);
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

.trust-building {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.trust-item p {
    font-size: 17px;
    opacity: 0.95;
    line-height: 1.5;
}

.testimonials-inline {
    padding: 90px 20px;
    background: white;
}

.testimonial {
    background: var(--light);
    padding: 35px 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #333;
}

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

.detailed-benefits {
    padding: 90px 20px;
    background: var(--light);
}

.detailed-benefits h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

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

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

.benefit-visual,
.benefit-text {
    flex: 1;
    min-width: 300px;
}

.benefit-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.benefit-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--dark);
}

.benefit-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.7;
}

.cta-break {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.cta-break h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-break p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-pricing {
    padding: 90px 20px;
    background: white;
}

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

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.service-card > p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features span {
    font-size: 15px;
    color: #333;
}

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

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

.select-service:hover {
    background: #0052a3;
}

.urgency-section {
    padding: 70px 20px;
    background: #fff3cd;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.urgency-box p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.7;
}

.form-section {
    padding: 90px 20px;
    background: var(--light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.form-wrapper > p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.form-wrapper > p a {
    color: var(--primary-color);
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    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-color);
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

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

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

.submit-btn:hover {
    background: #0052a3;
}

.final-trust {
    padding: 90px 20px;
    background: white;
}

.final-trust h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-point {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.trust-point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-point p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-col p,
.footer-col ul {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.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(--dark);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

.sticky-cta-content span {
    font-size: 17px;
    font-weight: 600;
}

.sticky-cta-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #0052a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn.accept:hover {
    background: #218838;
}

.cookie-btn.reject {
    background: var(--gray);
    color: white;
}

.cookie-btn.reject:hover {
    background: #5a6268;
}

.page-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.lead {
    font-size: 21px;
    opacity: 0.95;
}

.about-story,
.values-section,
.team-intro,
.mission-section {
    padding: 80px 20px;
}

.about-story {
    background: white;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark);
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.value-block {
    background: white;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-color);
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.team-intro {
    background: white;
}

.team-intro h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

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

.stat-item p {
    font-size: 17px;
    color: var(--gray);
}

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark);
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
    background: white;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-header {
    background: var(--primary-color);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    margin: 0;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.included-list {
    list-style: none;
    margin-bottom: 30px;
}

.included-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid var(--border);
    padding-left: 25px;
    position: relative;
}

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

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

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.process-step p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 20px;
    background: white;
}

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-form-wrapper > p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-wrapper a {
    color: var(--primary-color);
}

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

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

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 20px 80px;
    background: white;
    min-height: 70vh;
}

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

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

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

.thanks-details {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

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

.useful-links {
    margin: 40px 0;
    text-align: left;
}

.useful-links h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.useful-links ul {
    list-style: none;
}

.useful-links li {
    margin-bottom: 10px;
}

.useful-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 17px;
}

.useful-links a:hover {
    text-decoration: underline;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 16px;
    color: var(--gray);
}

.contact-reminder a {
    color: var(--primary-color);
}

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

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

.last-updated {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .split-left,
    .split-right {
        padding: 0;
    }

    .split-visual {
        padding: 60px 20px;
    }

    .story-intro h2,
    .insight-reveal h2 {
        font-size: 28px;
    }

    .problem-amplification h2,
    .detailed-benefits h2,
    .services-pricing h2 {
        font-size: 30px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .service-detail-header {
        padding: 25px;
    }

    .service-detail-header h2 {
        font-size: 26px;
    }

    .service-detail-content {
        padding: 25px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

    .cookie-content {
        justify-content: center;
        text-align: center;
    }

    .contact-grid {
        gap: 40px;
    }
}
