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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #2980b9;
}

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

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* Navigation */
.nav-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e1e8ed;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3498db;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    padding: 4rem 3rem 4rem 6rem;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: #e8eef3;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Intro Section */
.intro-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 0 0 12%;
}

.intro-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

/* Services Preview */
.services-preview {
    padding: 7rem 3rem;
    background-color: #f8f9fa;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 4rem;
    padding-left: 5%;
}

.section-header-left h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.section-header-left p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card-offset {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-1 {
    margin-left: 0;
}

.service-card-2 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

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

.service-card-4 {
    margin-left: 10%;
    flex-direction: row-reverse;
}

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

.service-card-6 {
    margin-left: 7%;
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 0 0 45%;
    background-color: #e8eef3;
}

.service-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

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

/* CTA Diagonal */
.cta-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-overlap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.cta-content-overlap h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content-overlap p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Form Section */
.form-section-offset {
    padding: 7rem 3rem;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 0 0 10%;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #555;
}

.form-error {
    background-color: #ffe6e6;
    color: #c0392b;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    background-color: #d4edda;
    color: #27ae60;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: none;
}

.form-success.show {
    display: block;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Trust Section */
.trust-section {
    padding: 6rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ecf0f1;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ecf0f1;
}

/* Footer */
.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 3rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.5;
    font-style: italic;
}

/* Page Header Offset */
.page-header-offset {
    padding: 5rem 3rem 3rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
}

.page-header-content {
    max-width: 900px;
    margin: 0 0 0 8%;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    line-height: 1.7;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 5rem;
}

.service-detail-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.service-detail-image {
    flex: 0 0 50%;
    background-color: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #555;
}

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

/* CTA Services Page */
.cta-services-page {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-services-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-services-content p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

/* About Page */
.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: #f8f9fa;
}

.about-hero-text {
    flex: 1;
    padding: 4rem 3rem 4rem 6rem;
}

.about-hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
    background-color: #e8eef3;
}

.about-hero-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.about-story-narrow {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-values-offset {
    padding: 6rem 3rem;
    background-color: #f8f9fa;
}

.values-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.values-header h2 {
    font-size: 2.6rem;
    color: #2c3e50;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-offset {
    margin-left: 10%;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-approach-visual {
    padding: 6rem 3rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.approach-content-left {
    flex: 1;
}

.approach-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-content-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-image-right {
    flex: 1;
    background-color: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-process-timeline {
    padding: 6rem 3rem;
    background-color: #f8f9fa;
}

.about-process-timeline h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.timeline-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
}

.timeline-left {
    justify-content: flex-start;
}

.timeline-right {
    justify-content: flex-end;
}

.timeline-content {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-cta-diagonal {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #2c3e50 100%);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.about-cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

/* Contact Page */
.contact-hero-asymmetric {
    padding: 5rem 3rem 3rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.contact-intro-offset {
    max-width: 800px;
    margin: 0 0 0 8%;
    color: #ffffff;
}

.contact-intro-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-intro-offset p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.contact-main-layout {
    padding: 5rem 3rem;
    background-color: #ffffff;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container {
    flex: 2;
}

.contact-info-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.contact-faq-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h3,
.contact-faq-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.3rem;
}

.contact-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #2c3e50 100%);
    text-align: center;
}

.thanks-content-center {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.thanks-details {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.thanks-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.thanks-info-card {
    flex: 2;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.thanks-info-card h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-service-selected,
.thanks-contact-card,
.thanks-resources {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-service-selected h3,
.thanks-contact-card h3,
.thanks-resources h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-service-selected p,
.thanks-contact-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-price-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.email-display {
    font-weight: 600;
    color: #3498db;
}

.program-info {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.thanks-resources ul {
    list-style: none;
}

.thanks-resources ul li {
    margin-bottom: 0.8rem;
}

.thanks-resources ul li a {
    color: #3498db;
    font-size: 1rem;
}

.thanks-cta {
    padding: 5rem 3rem;
    background-color: #ffffff;
    text-align: center;
}

.thanks-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-section strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding: 3rem 2rem;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .service-card-offset {
        flex-direction: column;
    }

    .service-card-2,
    .service-card-4,
    .service-card-6 {
        flex-direction: column;
        margin-left: 0;
    }

    .service-card-1,
    .service-card-3,
    .service-card-5 {
        margin-left: 0;
    }

    .service-image-wrapper {
        flex: none;
        width: 100%;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .service-detail-image {
        flex: none;
        width: 100%;
    }

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

    .about-hero-text {
        padding: 3rem 2rem;
    }

    .about-hero-image {
        width: 100%;
    }

    .about-hero-image img {
        height: 400px;
    }

    .about-approach-visual {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-main-layout {
        flex-direction: column;
    }

    .thanks-info-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-disclosure {
        width: 100%;
        text-align: center;
        margin: 1rem 0 0 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .intro-narrow {
        margin: 0;
    }

    .section-header-left {
        padding-left: 0;
    }

    .form-container-asymmetric {
        margin: 0;
        padding: 2rem;
    }

    .story-content {
        margin: 0;
    }

    .page-header-content {
        margin: 0;
    }

    .contact-intro-offset {
        margin: 0;
    }

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

    .cookie-content p {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-text-block p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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