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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    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;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Navigation */
.main-nav {
    background: var(--bg-white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Buttons */
.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-large-white {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-large-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Split Sections */
.split-intro,
.value-split,
.story-split,
.team-split,
.why-us-split,
.values-split {
    display: flex;
    align-items: center;
}

.split-intro {
    min-height: 70vh;
}

.split-visual,
.split-text,
.value-image,
.value-content,
.story-image,
.story-content,
.team-image,
.team-content,
.why-visual,
.why-content,
.values-visual,
.values-content {
    flex: 1;
}

.split-visual img,
.value-image img,
.story-image img,
.team-image img,
.why-visual img,
.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text,
.value-content,
.story-content,
.team-content,
.why-content,
.values-content {
    padding: 4rem 3rem;
}

.split-text h2,
.value-content h2,
.story-content h2,
.team-content h2,
.why-content h2,
.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.split-text p,
.value-content p,
.story-content p,
.team-content p,
.why-content p,
.values-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.value-split.reverse,
.team-split.reverse {
    flex-direction: row-reverse;
}

.value-split {
    background: var(--bg-light);
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Expertise Showcase */
.expertise-showcase {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.expertise-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.expertise-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.expertise-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.expertise-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.services-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-item.featured {
    border: 3px solid var(--primary-color);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-details p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-details ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-details li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Form Section */
.form-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.form-container-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-wrapper {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 5rem 3rem;
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* CTA Sections */
.cta-final,
.cta-about,
.cta-contact {
    padding: 5rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Page Hero */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.philosophy-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.philosophy-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.philosophy-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.numbers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.numbers-header h2 {
    font-size: 2.5rem;
}

.numbers-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.number-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Values List */
.values-list,
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item,
.reason-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3,
.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.value-item p,
.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Detail Page */
.page-hero-services {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 5rem 3rem;
    text-align: center;
}

.hero-services-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-services-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.services-detail-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
}

.service-detail-card.featured-service {
    border: 4px solid var(--primary-color);
}

.service-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10;
}

.service-card-split {
    display: flex;
}

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

.service-card-content {
    flex: 1.2;
    padding: 3rem;
}

.service-card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-card-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-cta-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--bg-white);
    padding: 2rem;
    text-align: center;
}

.service-cta-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Pricing Info Section */
.pricing-info-section {
    padding: 4rem 3rem;
    background: var(--bg-white);
}

.pricing-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-info-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.pricing-info-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.pricing-info-item {
    flex: 1;
    min-width: 300px;
}

.pricing-info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.pricing-info-item ul {
    list-style: none;
}

.pricing-info-item li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.pricing-info-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.pricing-info-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-hero {
    background: var(--bg-light);
    padding: 4rem 3rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.contact-split-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    margin-top: 2rem;
}

.contact-visual img {
    border-radius: 12px;
}

.contact-form-side {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Contact FAQ */
.contact-faq-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-service-info {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: none;
}

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

.thanks-details {
    margin: 3rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-additional {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

.additional-content h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.additional-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.additional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.additional-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.additional-card a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .value-split,
    .story-split,
    .team-split,
    .why-us-split,
    .values-split,
    .page-hero-split,
    .service-card-split,
    .contact-split-layout {
        flex-direction: column;
    }

    .value-split.reverse,
    .team-split.reverse,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .hero-visual,
    .split-visual,
    .value-image,
    .story-image,
    .team-image,
    .why-visual,
    .values-visual,
    .hero-image,
    .service-card-visual {
        min-height: 400px;
    }

    .form-container-split,
    .pricing-info-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .split-text h2,
    .value-content h2,
    .story-content h2,
    .team-content h2,
    .why-content h2,
    .values-content h2 {
        font-size: 2rem;
    }

    .expertise-header h2,
    .services-intro h2,
    .trust-content h2,
    .cta-content-centered h2 {
        font-size: 2rem;
    }

    .service-price-large {
        font-size: 2rem;
    }

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

    .testimonials-split,
    .services-split-layout {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .split-text,
    .value-content,
    .story-content,
    .team-content,
    .why-content,
    .values-content {
        padding: 2rem 1.5rem;
    }

    .expertise-showcase,
    .services-overview,
    .form-section,
    .trust-section,
    .cta-final,
    .cta-about,
    .cta-contact,
    .contact-main-section,
    .thanks-section,
    .legal-page {
        padding: 3rem 1.5rem;
    }

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

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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