/* 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;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

/* Header and Navigation - Split Screen Style */
.header-split {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

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

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

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 90vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1 1 50%;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-visual {
    flex: 1 1 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    background-color: #27ae60;
    color: #ffffff;
}

.btn-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 0.95rem;
}

.btn-service:hover {
    background-color: #2980b9;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #c0392b;
}

/* Intro Section - Asymmetric Split */
.intro-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.2 1 60%;
}

.intro-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image {
    flex: 0.8 1 40%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Philosophy Section - Split with Visual First */
.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.philosophy-visual {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-content {
    flex: 1 1 55%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #546e7a;
    border-bottom: 1px solid #ecf0f1;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Testimonial Flow */
.testimonial-flow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1 1 50%;
    background-color: #f8f9fa;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

/* Services Preview - Grid with Split Cards */
.services-preview-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    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;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0 1.5rem 1rem 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 700;
    margin: 1rem 1.5rem;
}

.service-card .btn-service {
    margin: 0 1.5rem 1.5rem 1.5rem;
}

/* Value Section - Split Reversed */
.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0;
    background-color: #ffffff;
}

.value-content {
    flex: 1 1 55%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.value-content p {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.value-points {
    list-style: none;
}

.value-points li {
    padding: 1rem 0 1rem 2.5rem;
    font-size: 1.05rem;
    color: #2c3e50;
    position: relative;
}

.value-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.value-visual {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Indicators */
.trust-indicators {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-item {
    text-align: center;
    flex: 1 1 200px;
}

.trust-item h3 {
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.trust-item p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

/* Form Section - Split */
.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    gap: 4rem;
    background-color: #f8f9fa;
}

.form-intro {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.8;
}

.form-container {
    flex: 1 1 60%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

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

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

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

/* Final CTA - Split */
.final-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0;
}

.final-cta-visual {
    flex: 1 1 45%;
    overflow: hidden;
}

.final-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-content {
    flex: 1 1 55%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(236, 240, 241, 0.2);
}

.footer-section {
    flex: 1 1 250px;
}

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

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

/* Page Hero - Split for Internal Pages */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero-content {
    flex: 1 1 50%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
}

.page-hero-visual {
    flex: 1 1 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Section - About Page */
.story-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.story-visual {
    flex: 1 1 45%;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1 1 55%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

/* Team Section */
.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
    border: 5px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

/* Philosophy Alt Section */
.philosophy-alt-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0;
}

.philosophy-alt-content {
    flex: 1 1 55%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-alt-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.philosophy-alt-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-alt-visual {
    flex: 1 1 45%;
    overflow: hidden;
}

.philosophy-alt-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

/* CTA Sections */
.cta-about,
.cta-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
    background-color: #ffffff;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-about p,
.cta-services p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.service-detail-item {
    display: flex;
    padding: 4rem 3rem;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail-item:nth-child(even) {
    background-color: #f8f9fa;
}

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

.service-detail-visual {
    flex: 1 1 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.service-detail-content ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    font-size: 1.05rem;
    color: #546e7a;
    position: relative;
}

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

.service-price-large {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: 800;
    margin: 1.5rem 0;
}

.price-note {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 400;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

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

/* Contact Page */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    gap: 4rem;
}

.contact-info {
    flex: 1 1 50%;
}

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

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

.contact-detail h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.contact-detail a {
    color: #3498db;
}

.contact-detail a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1 1 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
    background-color: #f8f9fa;
}

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

.contact-cta p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
}

/* Thanks Page */
.thanks-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.thanks-next {
    text-align: left;
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.thanks-next h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    padding: 1rem 0 1rem 3rem;
    font-size: 1.1rem;
    color: #546e7a;
    position: relative;
    counter-increment: step-counter;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 2rem;
    height: 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-info {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-additional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem 6rem 3rem;
    background-color: #f8f9fa;
}

.thanks-additional h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.thanks-suggestions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.suggestion-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.suggestion-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.suggestion-card p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

/* Legal Content Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-asymmetric,
    .philosophy-split,
    .value-split,
    .form-split,
    .final-cta-split,
    .page-hero-split,
    .story-split,
    .philosophy-alt-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .page-hero-content {
        padding: 3rem 2rem;
    }

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

    .testimonial-flow {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .intro-text h2,
    .philosophy-content h2,
    .value-content h2,
    .form-intro h2,
    .final-cta-content h2 {
        font-size: 2rem;
    }

    .services-intro h2,
    .team-section h2,
    .values-section h2,
    .faq-section h2,
    .cta-about h2,
    .cta-services h2 {
        font-size: 2.2rem;
    }

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

    .trust-indicators {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}