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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
}

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

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-cta-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-cta-btn:hover {
    background: #1e40af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: white;
    padding: 20px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #10b981;
    color: white;
}

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

.btn-cookie-reject {
    background: #6b7280;
    color: white;
}

.btn-cookie-reject:hover {
    background: #4b5563;
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-hero {
    background: #dc2626;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.cta-hero:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.story-intro {
    padding: 100px 20px;
    background: #f9fafb;
}

.lead-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
    font-style: italic;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #374151;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.15rem;
    color: #374151;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 1.4rem;
    font-weight: bold;
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-top: 30px;
}

.split-image {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(45deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 12px;
}

.problem-img {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.insight-reveal {
    padding: 100px 20px;
    background: #1e293b;
    color: white;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #cbd5e1;
}

.insight-box {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 35px;
    margin-top: 50px;
    border-radius: 8px;
}

.insight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #60a5fa;
}

.trust-building {
    padding: 100px 20px;
    background: #f0fdf4;
}

.section-title-centered {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.trust-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.trust-card p {
    color: #6b7280;
    font-size: 1.05rem;
}

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

.testimonial {
    border-left: 5px solid #2563eb;
    padding: 30px 40px;
    margin: 40px 0;
    background: #f9fafb;
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    color: #6b7280;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #fffbeb;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.benefit-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    border-top: 4px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.benefit-item p {
    color: #4b5563;
    font-size: 1.05rem;
}

.cta-section-break {
    padding: 80px 20px;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta-section-break h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section-break p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.cta-large {
    background: white;
    color: #2563eb;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.pricing-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: #1e40af;
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: white;
}

.pricing-card.featured .service-desc,
.pricing-card.featured .features-list li {
    color: #dbeafe;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-desc {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 0;
}

.features-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4b5563;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card.featured .features-list li:before {
    color: #d1fae5;
}

.urgency-element {
    padding: 80px 20px;
    background: #fef3c7;
}

.urgency-box {
    background: white;
    border: 3px solid #f59e0b;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 15px;
}

.urgency-note {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.2rem;
}

.form-section {
    padding: 100px 20px;
    background: #f3f4f6;
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 20px;
}

.form-privacy a {
    color: #2563eb;
}

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

.final-trust h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a202c;
    text-align: center;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    max-width: 600px;
    margin: 0 auto;
}

.process-list li {
    counter-increment: process-counter;
    padding: 20px 0 20px 60px;
    position: relative;
    font-size: 1.1rem;
    color: #374151;
    border-left: 2px solid #e5e7eb;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: -20px;
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.final-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #6b7280;
    font-style: italic;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta button {
    background: #dc2626;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(220, 38, 38, 0.5);
}

.site-footer {
    background: #1a202c;
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.page-hero {
    margin-top: 80px;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #6b7280;
}

.about-story,
.our-approach,
.team-section,
.values-section,
.coverage-area {
    padding: 80px 20px;
}

.about-story {
    background: white;
}

.about-story h2,
.our-approach h2,
.team-section h2,
.values-section h2,
.coverage-area h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.about-story p,
.team-section p,
.coverage-area p {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 20px;
}

.our-approach {
    background: #f9fafb;
}

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

.approach-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.approach-item p {
    color: #4b5563;
}

.team-section {
    background: white;
}

.values-section {
    background: #f0fdf4;
}

.values-list {
    list-style: none;
    max-width: 700px;
}

.values-list li {
    padding: 20px 0;
    border-bottom: 1px solid #d1fae5;
    font-size: 1.1rem;
    color: #374151;
}

.values-list li strong {
    color: #1a202c;
}

.coverage-area {
    background: white;
}

.cta-simple {
    padding: 80px 20px;
    background: #f3f4f6;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-simple p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.service-block {
    margin-bottom: 60px;
    padding: 50px;
    background: white;
    border-radius: 12px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 25px;
}

.service-content p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #4b5563;
}

.service-content ul li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #2563eb;
    font-size: 1.5rem;
}

.featured-service {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left-color: #f59e0b;
}

.additional-services {
    padding: 60px 20px;
    background: #f9fafb;
}

.additional-services h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.addon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.addon-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.addon-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.addon-item p {
    color: #4b5563;
    font-size: 1.05rem;
}

.pricing-notes {
    padding: 60px 20px;
    background: white;
}

.pricing-notes h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.pricing-notes ul {
    list-style: none;
    max-width: 700px;
}

.pricing-notes ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
}

.pricing-notes ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.contact-info {
    padding: 60px 20px;
    background: white;
}

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

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-block p {
    color: #374151;
    line-height: 1.8;
}

.contact-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

.contact-map {
    padding: 60px 20px;
    background: #f9fafb;
}

.contact-map h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.map-placeholder {
    background: #e5e7eb;
    padding: 60px 40px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.map-placeholder p {
    color: #374151;
    font-size: 1.05rem;
}

.contact-faqs {
    padding: 60px 20px;
    background: white;
}

.contact-faqs h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    color: #4b5563;
    font-size: 1.05rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #374151;
    max-width: 600px;
    margin: 0 auto 30px;
}

.thanks-details {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
    text-align: left;
}

.thanks-details p {
    margin: 8px 0;
    color: #374151;
    font-size: 1.05rem;
}

.thanks-details strong {
    color: #1a202c;
}

.next-steps {
    padding: 80px 20px;
    background: white;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 20px 0 20px 60px;
    position: relative;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #10b981;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-info {
    padding: 60px 20px;
    background: #f9fafb;
}

.thanks-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
}

.legal-page {
    margin-top: 80px;
    padding: 60px 20px;
    background: white;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.updated-date {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-page p {
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.8;
}

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

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    color: #374151;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #1a202c;
}

.cookie-table td {
    color: #374151;
}

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

    .floating-nav {
        padding: 12px 20px;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-cta-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

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

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

    .split-image {
        min-height: 250px;
    }

    .section-title-centered,
    .benefits-reveal h2 {
        font-size: 2rem;
    }

    .trust-cards,
    .pricing-cards,
    .benefits-grid {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

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

    .service-block {
        padding: 30px 20px;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.8rem;
    }

    .pricing-cards {
        justify-content: space-between;
    }

    .pricing-card {
        flex-basis: calc(50% - 15px);
    }
}
