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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb5;
    --accent-color: #e67e22;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

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

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

a:hover {
    color: var(--secondary-color);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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 {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #4a8fb5;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

.btn-reject:hover {
    background: white;
    color: var(--dark-text);
}

/* Navigation */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8fb5 100%);
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1579621970795-87facc2f976d?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.4;
}

/* CTA Buttons */
.cta-primary,
.cta-inline,
.cta-urgency {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-primary:hover,
.cta-inline:hover,
.cta-urgency:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    color: white;
}

.cta-inline {
    background: var(--primary-color);
    padding: 12px 30px;
    font-size: 16px;
}

.cta-inline:hover {
    background: var(--secondary-color);
}

/* Story and Content Sections */
.story-intro,
.problem-amplification,
.insight-reveal,
.trust-building,
.social-proof,
.benefits-reveal,
.urgency-section,
.contact-section {
    padding: 80px 20px;
}

.story-intro {
    background: var(--bg-light);
}

.lead-text {
    font-size: 24px;
    line-height: 1.5;
    color: var(--dark-text);
    margin-bottom: 25px;
    font-weight: 500;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Problem Amplification */
.problem-amplification {
    background: var(--bg-white);
}

.split-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8fb5 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.stat-box h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    line-height: 1.4;
}

/* Insight Reveal */
.insight-reveal {
    background: var(--bg-light);
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.testimonial-inline {
    background: white;
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    box-shadow: var(--shadow);
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Trust Building */
.trust-building {
    background: var(--bg-white);
}

.trust-building h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Social Proof */
.social-proof {
    background: var(--primary-color);
    color: white;
}

.social-proof h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

/* Services Section */
.benefits-reveal {
    background: var(--bg-light);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    flex: 1 1 350px;
    max-width: 400px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

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

.service-item.premium {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge.premium {
    background: var(--primary-color);
}

.badge-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.badge-inline.premium {
    background: var(--primary-color);
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
}

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

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

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

/* Urgency Section */
.urgency-section {
    background: #fff3e0;
    border-top: 4px solid var(--accent-color);
    border-bottom: 4px solid var(--accent-color);
}

.urgency-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.highlight-text {
    font-size: 22px;
    font-weight: 600;
    color: #d35400;
    text-align: center;
    margin: 30px 0;
}

.urgency-calc {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
}

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

.calc-value {
    font-weight: 700;
    color: #e74c3c;
    font-size: 24px;
}

.cta-urgency {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

/* Contact Form */
.contact-section {
    background: var(--bg-white);
}

.contact-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.contact-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--light-text);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 124, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.sticky-button {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.sticky-button:hover {
    background: #d35400;
    color: white;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 20px;
}

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

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

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

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

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

.footer-column a {
    color: #ccc;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8fb5 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* About Page */
.about-story,
.values-section,
.team-section,
.approach-section {
    padding: 70px 20px;
}

.about-story {
    background: var(--bg-light);
}

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

.about-story p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.value-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.stat h3 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    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;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Services Page */
.services-intro {
    padding: 50px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-detailed {
    padding: 60px 20px;
}

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

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-tag {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.premium-service {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 70px;
}

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

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

.small-text {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 15px;
}

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

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

/* Contact Page */
.contact-info-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.map-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 80px 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 10px;
}

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

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

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

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

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

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

.thanks-details {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    text-align: left;
}

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

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

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

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

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

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

.thanks-actions {
    margin: 40px 0;
}

.thanks-actions h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.action-link {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.action-link:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-cta {
    margin-top: 50px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    background: var(--bg-white);
}

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

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

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

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

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

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: var(--shadow);
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

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

.cookie-table tbody tr:hover {
    background: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .lead-text {
        font-size: 20px;
    }

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

    .stat-box h3 {
        font-size: 36px;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

    .sticky-text {
        font-size: 16px;
    }

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

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

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-primary,
    .cta-urgency {
        padding: 14px 30px;
        font-size: 16px;
    }

    .service-price,
    .price-tag {
        font-size: 28px;
    }

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