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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section - Offset Layout */
.hero-offset {
    display: flex;
    min-height: 600px;
    padding: 80px 5% 80px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    z-index: 2;
}

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

.hero-content-left p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -50px;
    margin-top: 40px;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

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

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

.cta-inline {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-inline:hover {
    background: #3498db;
    color: #ffffff;
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-floating {
    flex: 1.5;
    padding: 50px;
    background: #ffffff;
    border-left: 5px solid #3498db;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-30px);
}

.intro-block-floating h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-block-floating p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: #3498db;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.stat-card.offset {
    background: #2c3e50;
    margin-left: 40px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    background: #f8f9fa;
    align-items: center;
}

.problem-image {
    flex: 1;
}

.problem-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.problem-text-overlap {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    margin-left: -80px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.problem-text-overlap h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.problem-list {
    list-style: none;
    margin-bottom: 25px;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 1.0625rem;
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
}

.problem-insight {
    font-style: italic;
    color: #7f8c8d;
    padding: 20px;
    background: #f8f9fa;
    border-left: 3px solid #3498db;
    margin-top: 20px;
}

/* Solution Section - Diagonal */
.solution-diagonal {
    padding: 120px 5%;
    background: linear-gradient(165deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    position: relative;
}

.solution-diagonal h2 {
    font-size: 2.75rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.method-steps {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step-1 {
    transform: translateY(-20px);
}

.step-2 {
    transform: translateY(10px);
}

.step-3 {
    transform: translateY(-30px);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
    font-weight: 600;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.solution-diagonal .cta-inline {
    display: block;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    border-color: #ffffff;
    color: #ffffff;
}

.solution-diagonal .cta-inline:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Services Section - Offset Grid */
.services-offset {
    padding: 100px 5%;
    background: #ffffff;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header-left h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-header-left p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card.service-featured {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.service-card.service-premium {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card.service-featured p,
.service-card.service-premium p {
    opacity: 0.95;
}

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #27ae60;
}

.service-card.service-featured .service-features li::before,
.service-card.service-premium .service-features li::before {
    color: #ffffff;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-card.service-featured .service-price,
.service-card.service-premium .service-price {
    color: #ffffff;
}

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

.service-select-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-card.service-featured .service-select-btn,
.service-card.service-premium .service-select-btn {
    background: #ffffff;
    color: #2c3e50;
}

.service-card.service-featured .service-select-btn:hover,
.service-card.service-premium .service-select-btn:hover {
    background: #ecf0f1;
}

/* Form Section - Overlap */
.form-section-overlap {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-40px);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    color: #5a6c7d;
    margin-bottom: 35px;
    font-size: 1.0625rem;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

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

.cta-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 100px 5%;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 2.75rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    position: relative;
}

.testimonial-1 {
    margin-left: 0;
}

.testimonial-2 {
    margin-left: 10%;
}

.testimonial-3 {
    margin-left: 5%;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #5a6c7d;
    font-size: 0.9375rem;
}

/* Benefits Section */
.benefits-stacked {
    padding: 100px 5%;
    background: #f8f9fa;
}

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

.benefit-block img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.benefit-left {
    flex-direction: row;
}

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

.benefit-center {
    flex-direction: row;
    justify-content: center;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.benefit-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* CTA Sections */
.cta-sticky-trigger {
    padding: 100px 5%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Info Section - Diagonal */
.info-section-diagonal {
    padding: 100px 5%;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.info-section-diagonal h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.info-section-diagonal p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 5%;
    background: #f8f9fa;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

.footer-brand p {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col p {
    font-size: 0.9375rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-references {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.875rem;
}

.references-list li a {
    color: #3498db;
    text-decoration: none;
}

.references-list li a:hover {
    text-decoration: underline;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 99;
}

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

.sticky-cta span {
    font-size: 1.125rem;
    font-weight: 600;
}

.sticky-cta-btn {
    background: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.sticky-cta-btn:hover {
    background: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -5px 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;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

.cookie-btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.cookie-btn-reject {
    background: #e74c3c;
    color: #ffffff;
}

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Page Hero */
.page-hero-offset {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

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

.page-hero-content p {
    font-size: 1.375rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-intro-diagonal {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-overlap {
    flex: 1;
    margin-top: -60px;
}

.about-image-overlap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.philosophy-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 2.75rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.expertise-asymmetric {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.expertise-content {
    flex: 1.5;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 1.0625rem;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.expertise-stats-floating {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    background: #3498db;
    color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.stat-item:nth-child(2) {
    margin-left: 40px;
    background: #2c3e50;
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-desc {
    display: block;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.values-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.75rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section-overlap {
    padding: 100px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.approach-content h2 {
    font-size: 2.75rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-content > p {
    font-size: 1.125rem;
    margin-bottom: 60px;
    opacity: 0.95;
    max-width: 800px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    min-width: 70px;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-about {
    padding: 100px 5%;
    text-align: center;
    background: #f8f9fa;
}

.cta-about h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 35px;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 5% 60px;
    background: #ffffff;
}

.services-intro-text {
    max-width: 800px;
}

.services-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-intro-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-detailed {
    padding: 60px 5% 100px;
    background: #f8f9fa;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
}

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

.service-description {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-content h4 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: #5a6c7d;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.25rem;
}

.service-note {
    font-size: 0.875rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 15px;
}

.featured-service .service-detail-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.featured-service .service-detail-header h3,
.featured-service .service-price-large {
    color: #ffffff;
}

.premium-service .service-detail-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.premium-service .service-detail-header h3 {
    color: #ffffff;
}

.premium-service .service-price-large {
    color: #3498db;
}

.service-comparison {
    padding: 80px 5%;
    background: #ffffff;
}

.service-comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.guide-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.guide-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.guide-item p {
    font-size: 1rem;
    color: #5a6c7d;
}

/* Contact Page Styles */
.contact-main-asymmetric {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #3498db;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-image-overlap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.contact-approach {
    padding: 100px 5%;
    background: #f8f9fa;
}

.contact-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.approach-options {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.option-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.option-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-faq-section {
    padding: 100px 5%;
    background: #ffffff;
}

.contact-faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-contact {
    padding: 100px 5%;
    text-align: center;
    background: #f8f9fa;
}

.cta-contact h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 35px;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.375rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.selected-service-display {
    font-size: 1.125rem;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.thanks-next-steps {
    padding: 100px 5%;
    background: #ffffff;
}

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

.next-steps-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-icon {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    background: #3498db;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-resources {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-resources p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 14px 30px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.resource-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 100px 5%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 800;
}

.legal-date {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li,
.legal-content ol li {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-left {
        padding-right: 0;
    }

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

    .hero-image-right {
        margin-left: 0;
        margin-top: 30px;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-floating {
        transform: translateY(0);
    }

    .intro-stats {
        margin-top: 0;
    }

    .stat-card.offset {
        margin-left: 0;
    }

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

    .problem-text-overlap {
        margin-left: 0;
    }

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

    .step-1, .step-2, .step-3 {
        transform: translateY(0);
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-2, .testimonial-3 {
        margin-left: 0;
    }

    .benefit-block {
        flex-direction: column;
    }

    .benefit-right {
        flex-direction: column;
    }

    .about-intro-diagonal,
    .expertise-asymmetric,
    .contact-main-asymmetric {
        flex-direction: column;
    }

    .about-image-overlap {
        margin-top: 0;
    }

    .philosophy-blocks,
    .approach-options,
    .comparison-guide {
        flex-direction: column;
    }

    .philosophy-item.offset-item {
        transform: translateY(0);
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.875rem;
    }

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

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

    .thanks-content h1 {
        font-size: 2.5rem;
    }
}