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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Asymmetric */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

/* Hero - Offset Layout */
.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 8%;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-hero:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.hero-image-right {
    flex: 1;
    transform: translateY(30px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Intro Asymmetric */
.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 8%;
    gap: 80px;
    background-color: #ffffff;
}

.intro-text-block {
    flex: 1.5;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 1;
    transform: translateY(-40px);
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Problem Amplification */
.problem-amplification {
    padding: 120px 8%;
    background-color: #f8f9fa;
}

.problem-content h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.problem-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.offset-card {
    transform: translateY(40px);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2563eb;
    font-weight: 600;
}

.problem-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Insight Section */
.insight-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.insight-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.insight-content {
    flex: 1.3;
}

.insight-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background-color: #10b981;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-inline:hover {
    background-color: #059669;
    transform: translateX(5px);
}

/* Trust Building */
.trust-building {
    padding: 100px 8%;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.trust-block {
    flex: 1.2;
}

.trust-block p {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-offset {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(30px);
}

.testimonial-offset blockquote {
    font-style: italic;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-offset cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #2563eb;
}

/* Benefits - Asymmetric Layout */
.benefits-reveal {
    padding: 120px 8%;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.benefit-large {
    flex: 1 1 55%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
}

.benefit-medium {
    flex: 1 1 45%;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.benefit-small {
    flex: 1 1 30%;
    background-color: #e0f2fe;
    padding: 35px;
    border-radius: 12px;
}

.offset-right {
    transform: translateX(20px);
}

.benefit-large h3,
.benefit-medium h3,
.benefit-small h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-medium h3,
.benefit-small h3 {
    color: #1a1a1a;
}

.benefit-large p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefit-medium p,
.benefit-small p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonials Scattered */
.testimonials-scattered {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonial-left {
    max-width: 65%;
    align-self: flex-start;
}

.testimonial-right {
    max-width: 60%;
    align-self: flex-end;
    transform: translateX(-30px);
}

.testimonial-center {
    max-width: 70%;
    align-self: center;
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2563eb;
}

/* Approach Section */
.approach-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-block {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.block-offset-1 {
    transform: translateY(0);
}

.block-offset-2 {
    transform: translateY(30px);
}

.block-offset-3 {
    transform: translateY(-20px);
}

.block-offset-4 {
    transform: translateY(40px);
}

.approach-block h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2563eb;
    font-weight: 600;
}

.approach-block p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section Mid */
.cta-section-mid {
    padding: 80px 8%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.cta-content-offset {
    max-width: 700px;
    transform: translateX(10%);
}

.cta-content-offset h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 30px;
}

.cta-button-alt {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

/* Services - Asymmetric Grid */
.services-pricing {
    padding: 120px 8%;
    background-color: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-large {
    flex: 1 1 48%;
    min-width: 400px;
}

.service-medium {
    flex: 1 1 45%;
    min-width: 380px;
}

.service-small {
    flex: 1 1 30%;
    min-width: 320px;
}

.offset-service {
    transform: translateY(30px);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.service-card li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 15%;
}

.form-container-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 35px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 100px 8%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
}

.final-cta-content h3 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #d1fae5;
    margin-bottom: 35px;
}

.cta-final {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #10b981;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-cta a {
    display: block;
    padding: 16px 30px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

/* Footer */
.footer-asymmetric {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 60px 8% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-block h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-block p {
    color: #9ca3af;
    line-height: 1.7;
}

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

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

.footer-block a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #ffffff;
}

.disclaimer {
    border-top: 1px solid #374151;
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 25px 8%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Page Hero */
.page-hero {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-intro {
    font-size: 1.3rem;
    color: #6b7280;
}

/* About Page */
.about-content {
    padding: 60px 8%;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2563eb;
    font-weight: 600;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.mission-section,
.approach-detail {
    margin: 60px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mission-section h2,
.approach-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.mission-section p,
.approach-detail p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 8%;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.service-detail-content {
    flex: 1.3;
}

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

.service-detail-intro {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2563eb;
    font-weight: 600;
}

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

.service-detail-content li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.service-detail-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-price-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: inline-block;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
    margin-right: 10px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.service-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.comparison-section {
    margin-top: 80px;
    padding: 60px 8%;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.comparison-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.comparison-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comparison-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #374151;
    font-weight: 600;
}

.comparison-item p {
    color: #2563eb;
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    padding: 60px 8%;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2563eb;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.contact-info-additional,
.location-info {
    max-width: 900px;
    margin: 50px auto;
}

.contact-info-additional h2,
.location-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info-additional p,
.location-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info-additional a {
    color: #2563eb;
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    padding: 100px 8%;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #10b981;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-service-info {
    margin-bottom: 50px;
}

.selected-service-box {
    background-color: #f0fdf4;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #10b981;
}

.selected-service-box h3 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 15px;
    font-weight: 700;
}

.selected-service-box p {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 10px;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.next-step {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

.next-step h3 {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 600;
}

.next-step p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.thanks-button,
.thanks-button-alt {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-button {
    background-color: #2563eb;
    color: #ffffff;
}

.thanks-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.thanks-button-alt {
    background-color: #f8f9fa;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.thanks-button-alt:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 60px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2563eb;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 50px;
    font-style: italic;
    color: #6b7280;
}

.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-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a5568;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
        min-height: auto;
    }

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

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

    .hero-image-right {
        transform: none;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .intro-image-offset {
        transform: none;
    }

    .problem-amplification {
        padding: 60px 5%;
    }

    .problem-content h2 {
        font-size: 2rem;
    }

    .offset-card {
        transform: none;
    }

    .insight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .trust-content {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-offset {
        transform: none;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        flex: 1 1 100%;
    }

    .offset-right {
        transform: none;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        max-width: 100%;
        transform: none;
    }

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

    .block-offset-1,
    .block-offset-2,
    .block-offset-3,
    .block-offset-4 {
        transform: none;
    }

    .cta-content-offset {
        transform: none;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        min-width: 100%;
    }

    .offset-service {
        transform: none;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-section,
    .about-section.reverse {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 30px;
    }

    .contact-info-section {
        flex-direction: column;
    }

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

    .next-steps-list {
        flex-direction: column;
    }

    .next-step {
        max-width: 100%;
    }
}