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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Navigation - Split Style */
.nav-split {
    background: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

.nav-links a {
    font-weight: 500;
    color: #5f6368;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a73e8;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26,115,232,0.3);
}

.btn-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background: #f8f9fa;
    color: #1a73e8;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #1a73e8;
}

.btn-secondary:hover {
    background: #1a73e8;
    color: #ffffff;
}

/* Split Row Sections */
.split-row {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 1.25rem;
}

.split-visual {
    flex: 1;
}

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

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

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.stat-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5f6368;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #5f6368;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #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:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid #1a73e8;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1.125rem;
    font-weight: 400;
    color: #5f6368;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #5f6368;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: #1557b0;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

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

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

.testimonial-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
}

.testimonial-content blockquote p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-content strong {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.testimonial-content span {
    color: #5f6368;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    color: #5f6368;
    line-height: 1.8;
}

/* CTA Form Section */
.cta-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

.form-intro a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #1a73e8;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    padding: 1.125rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-submit:hover {
    background: #1557b0;
}

/* FAQ Split */
.faq-split {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.faq-header {
    flex: 0 0 300px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.faq-content {
    flex: 1;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: #e8eaed;
}

.faq-item p {
    padding: 1.5rem;
    color: #5f6368;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
}

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

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-accept {
    background: #1a73e8;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-accept:hover {
    background: #1557b0;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid #ffffff;
    font-weight: 600;
}

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

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

.sticky-cta-btn {
    display: block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(26,115,232,0.4);
}

.sticky-cta-btn:hover {
    background: #1557b0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26,115,232,0.5);
}

/* Page Hero */
.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

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

.hero-content-center h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-content-center .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
}

/* About Story */
.about-story {
    padding: 6rem 0;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.value-card p {
    color: #5f6368;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-role {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5f6368;
    line-height: 1.8;
}

/* Certifications Section */
.certifications-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.cert-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5f6368;
    font-size: 1.125rem;
}

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

/* CTA Section Simple */
.cta-section-simple {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-section-simple h2 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-simple p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}

.cta-section-simple .cta-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-section-simple .cta-primary:hover {
    background: #f8f9fa;
}

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

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

.service-detail-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-text p {
    color: #5f6368;
    line-height: 1.8;
    font-size: 1.125rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 1rem 0;
}

.service-price-large span {
    font-size: 1.25rem;
    font-weight: 400;
    color: #5f6368;
}

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

.service-detail-image img {
    border-radius: 12px;
}

.service-inclusions {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.service-inclusions h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.inclusion-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.inclusion-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1rem 1rem 1rem 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    position: relative;
}

.inclusion-item::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #1a73e8;
    font-weight: 700;
}

/* Additional Services */
.additional-services {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #5f6368;
    margin-bottom: 3rem;
}

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

.additional-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.additional-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.add-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.comparison-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.comparison-card p {
    color: #5f6368;
    margin-bottom: 1rem;
}

.recommendation {
    font-weight: 700;
    color: #1a73e8;
    font-size: 1.125rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.contact-block p {
    color: #5f6368;
    line-height: 1.8;
    font-size: 1.125rem;
}

.contact-block a {
    color: #1a73e8;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9375rem;
    color: #9aa0a6;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

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

.map-caption {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    color: #5f6368;
}

/* Contact Reasons */
.contact-reasons {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.reason-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reason-card p {
    color: #5f6368;
    line-height: 1.8;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-lead {
    font-size: 1.25rem;
    color: #5f6368;
    margin-bottom: 3rem;
}

.service-confirmation {
    margin-bottom: 3rem;
}

.service-selected {
    background: #f0f7ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
}

.service-selected strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-selected p {
    font-size: 1.125rem;
    color: #1a73e8;
    font-weight: 600;
    margin: 0;
}

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

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-item p {
    color: #5f6368;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    margin-bottom: 1rem;
    color: #5f6368;
}

.email-link {
    color: #1a73e8;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-intro {
    color: #5f6368;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.legal-container h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #5f6368;
}

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

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #5f6368;
    line-height: 1.8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #5f6368;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-row,
    .testimonial-split,
    .process-grid,
    .faq-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

    .process-grid {
        gap: 3rem;
    }

    .faq-header {
        flex: 1;
    }
}

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

    .hero-split {
        min-height: auto;
        padding: 3rem 1rem;
    }

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

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

    .section-header-center h2,
    .values-section h2,
    .team-section h2,
    .process-section h2 {
        font-size: 2rem;
    }

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

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .inclusion-item {
        flex: 1 1 100%;
    }

    .comparison-card,
    .additional-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand a {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9375rem;
    }

    .hero-content h1,
    .hero-content-center h1 {
        font-size: 1.75rem;
    }

    .cta-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}