/* 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-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

/* Header Asymmetric */
.header-asymmetric {
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
}

.header-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-block {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 0.5rem 1rem;
    border-left: 3px solid #ffc107;
    font-size: 0.85rem;
    color: #856404;
    margin-left: 2rem;
}

.nav-floating {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-left: 1rem;
}

.nav-floating a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-floating a:hover {
    border-bottom-color: #3498db;
    color: #3498db;
}

/* Hero Offset */
.hero-offset {
    padding: 4rem 5% 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-block {
    max-width: 650px;
    margin-left: 8%;
    padding-top: 2rem;
}

.hero-heading {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #546e7a;
    line-height: 1.5;
}

.hero-image-overlap {
    margin-left: auto;
    margin-right: 5%;
    max-width: 700px;
    margin-top: -3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.hero-cta-offset {
    margin-left: 12%;
    margin-top: -2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

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

/* Intro Staggered */
.intro-staggered {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.intro-text-narrow {
    max-width: 580px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text-narrow p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.intro-visual-offset {
    max-width: 600px;
    margin-left: 15%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Problem Irregular */
.problem-irregular {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-block-left {
    max-width: 700px;
    margin-right: auto;
    padding-left: 5%;
}

.problem-block-left h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-block-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.problem-stats-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-left: auto;
    margin-right: 10%;
    max-width: 800px;
}

.stat-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.4;
}

/* Insight Asymmetric */
.insight-asymmetric {
    padding: 5rem 5%;
    background-color: #ffffff;
    position: relative;
}

.insight-image-large {
    max-width: 900px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.insight-content-overlap {
    max-width: 700px;
    margin-left: auto;
    margin-right: 8%;
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

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

.insight-list {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.insight-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.insight-list strong {
    color: #2c3e50;
}

.insight-cta {
    margin-top: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Story Offset */
.story-offset {
    padding: 5rem 5%;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-container {
    max-width: 650px;
    margin-left: 10%;
}

.story-container h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.story-image-offset {
    max-width: 500px;
    margin-left: auto;
    margin-right: 8%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Trust Stacked */
.trust-stacked {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.section-heading-offset {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonials-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    max-width: 700px;
}

.testimonial-offset-1 {
    margin-left: 5%;
}

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

.testimonial-offset-3 {
    margin-left: 15%;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Benefits Asymmetric */
.benefits-asymmetric {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefits-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-content-irregular h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.benefit-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 650px;
}

.benefit-offset-1 {
    margin-left: 5%;
}

.benefit-offset-2 {
    margin-left: auto;
    margin-right: 8%;
}

.benefit-offset-3 {
    margin-left: 12%;
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #546e7a;
}

.benefits-visual-overlap {
    max-width: 600px;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -10rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

/* Services Preview Offset */
.services-preview-offset {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.section-heading-centered {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 4rem;
}

.services-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 550px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-card-offset-1 {
    margin-left: 5%;
}

.service-card-offset-2 {
    margin-left: auto;
    margin-right: 8%;
}

.service-card-offset-3 {
    margin-left: 10%;
}

.service-card-offset-4 {
    margin-left: auto;
    margin-right: 5%;
}

.service-card h4 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-note {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 6px;
}

.services-note p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

/* Form Section Offset */
.form-section-offset {
    padding: 6rem 5%;
    background-color: #ecf0f1;
}

.form-wrapper-irregular {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-wrapper-irregular h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-offset-2 {
    margin-left: 1.5rem;
}

.form-offset-3 {
    margin-left: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #7f8c8d;
}

.form-submit-offset {
    margin-top: 1rem;
    margin-left: 2rem;
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Asymmetric */
.final-cta-asymmetric {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 10%;
    text-align: left;
}

.final-cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #ffffff;
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer Irregular */
.footer-irregular {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-offset-1 {
    margin-left: 0;
}

.footer-offset-2 {
    margin-left: 2rem;
}

.footer-offset-3 {
    margin-left: 1rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.sticky-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 10%;
}

.page-hero-content h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #546e7a;
}

/* About Page Styles */
.about-intro-irregular {
    padding: 5rem 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text-block {
    max-width: 700px;
    margin-left: 8%;
}

.about-text-block h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.about-image-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 5%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-stacked {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.philosophy-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.philosophy-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

.philosophy-offset-1 {
    margin-left: 5%;
}

.philosophy-offset-2 {
    margin-left: auto;
    margin-right: 5%;
}

.philosophy-offset-3 {
    margin-left: 10%;
}

.philosophy-item h4 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #546e7a;
}

.expertise-asymmetric {
    padding: 5rem 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-visual-overlap {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.expertise-content-irregular {
    max-width: 750px;
    margin-left: auto;
    margin-right: 8%;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

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

.expertise-content-irregular p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.expertise-list {
    list-style-position: inside;
    margin-top: 1.5rem;
}

.expertise-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.values-offset {
    padding: 5rem 5%;
    background-color: #ecf0f1;
}

.values-offset h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.values-container {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 12%;
}

.values-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.cta-about-irregular {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
    margin-right: 10%;
    text-align: center;
}

.cta-about-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Services Page Styles */
.services-intro-irregular {
    padding: 3rem 5%;
    background-color: #ffffff;
}

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

.services-intro-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #546e7a;
}

.services-detailed-asymmetric {
    padding: 3rem 5%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.service-detail-offset-1 {
    flex-direction: row;
}

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

.service-detail-offset-3 {
    flex-direction: row;
}

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

.service-detail-offset-5 {
    flex-direction: row;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.service-includes {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-includes li {
    font-size: 1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.6rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1.1rem;
    color: #546e7a;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.services-note-section {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.services-note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #e8f4f8;
    border-radius: 8px;
    text-align: center;
}

.services-note-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0.8rem;
}

/* Contact Page Styles */
.contact-main-irregular {
    padding: 5rem 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-offset {
    max-width: 700px;
    margin-left: 8%;
}

.contact-info-offset h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
}

.contact-visual-overlap {
    max-width: 600px;
    margin-left: auto;
    margin-right: 5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.contact-note-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.contact-note-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-note-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.contact-note-content a {
    color: #3498db;
    text-decoration: underline;
}

.contact-cta-irregular {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
    text-align: center;
}

.contact-cta-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.thanks-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 10%;
}

.thanks-content-irregular h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-service-info {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 6px;
}

.thanks-service-info p {
    font-size: 1.1rem;
    margin: 0;
}

.thanks-next-steps {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.thanks-next-steps h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    max-width: 650px;
    display: flex;
    gap: 1.5rem;
}

.step-offset-1 {
    margin-left: 5%;
}

.step-offset-2 {
    margin-left: auto;
    margin-right: 10%;
}

.step-offset-3 {
    margin-left: 15%;
}

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

.step-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #546e7a;
}

.thanks-additional-info {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.additional-info-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.additional-info-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.prep-list {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.prep-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.thanks-cta-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.thanks-cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.thanks-cta-content a {
    color: #3498db;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.legal-page-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-page-container h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-page-container h4 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-page-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.legal-page-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page-container li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 0.8rem;
}

.legal-page-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page-container em {
    color: #7f8c8d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }

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

    .hero-image-overlap {
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }

    .hero-cta-offset {
        margin-left: 0;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        margin-left: 0;
    }

    .problem-stats-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .insight-content-overlap {
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }

    .story-image-offset {
        margin-left: 0;
        margin-right: 0;
    }

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

    .benefit-offset-1,
    .benefit-offset-2,
    .benefit-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .benefits-visual-overlap {
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4 {
        margin-left: 0;
        margin-right: 0;
    }

    .form-wrapper-irregular {
        margin-left: 0;
        padding: 2rem;
    }

    .form-offset-1,
    .form-offset-2,
    .form-offset-3 {
        margin-left: 0;
    }

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

    .final-cta-content {
        margin-left: 0;
    }

    .footer-offset-1,
    .footer-offset-2,
    .footer-offset-3 {
        margin-left: 0;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .page-hero-content {
        margin-left: 0;
    }

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

    .about-text-block {
        margin-left: 0;
    }

    .about-image-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .philosophy-offset-1,
    .philosophy-offset-2,
    .philosophy-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .expertise-content-irregular {
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }

    .values-container {
        margin-left: 0;
    }

    .cta-about-content {
        margin-right: 0;
    }

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

    .service-detail-offset-1,
    .service-detail-offset-2,
    .service-detail-offset-3,
    .service-detail-offset-4,
    .service-detail-offset-5,
    .service-detail-offset-6 {
        flex-direction: column;
    }

    .contact-info-offset {
        margin-left: 0;
    }

    .contact-visual-overlap {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-cta-content {
        margin-left: 0;
    }

    .thanks-content-irregular {
        margin-left: 0;
    }

    .thanks-content-irregular h2 {
        font-size: 2.2rem;
    }

    .step-offset-1,
    .step-offset-2,
    .step-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .section-heading-offset,
    .section-heading-centered {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}