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

:root {
    --primary-color: #4a7c9e;
    --secondary-color: #6ba3c8;
    --accent-color: #8ec5e3;
    --dark-color: #2c4a5d;
    --light-color: #f4f7f9;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a:hover {
    color: var(--secondary-color);
}

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

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

/* Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Split Layout */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-color);
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.hero-lead {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.hero-visual-right {
    flex: 1;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image-placeholder svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Intro Split */
.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.intro-visual-left {
    flex: 1;
    padding: 40px 60px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
}

.intro-content-right {
    flex: 1;
    padding: 40px 60px;
}

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.intro-content-right p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-color);
}

/* Problem Section */
.problem-section {
    background-color: var(--light-color);
    padding: 80px 20px;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.problem-grid {
    display: flex;
    gap: 30px;
}

.problem-card {
    flex: 1;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.problem-icon {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
}

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

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.services-split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 0 20px;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.service-visual-right,
.service-visual-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-right svg,
.service-visual-left svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-select-service,
.btn-submit,
.btn-sticky {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-select-service:hover,
.btn-submit:hover,
.btn-sticky:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-primary-large {
    padding: 18px 48px;
    font-size: 18px;
}

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

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

/* Trust Section */
.trust-section {
    background-color: var(--light-color);
    padding: 80px 20px;
}

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

.trust-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.trust-split {
    display: flex;
    gap: 60px;
}

.trust-left,
.trust-right {
    flex: 1;
}

.trust-point {
    margin-bottom: 40px;
}

.trust-point h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-point p {
    font-size: 17px;
    color: var(--text-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

/* CTA Sections */
.cta-section-inline {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 32px;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.process-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 16px;
    color: var(--text-color);
}

/* Form Section */
.form-section {
    padding: 80px 20px;
}

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

.form-intro-left {
    flex: 1;
    padding-right: 20px;
}

.form-intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.form-intro-left p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
}

.form-content-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page Styles */
.about-intro-split {
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.about-content-left {
    flex: 1;
    padding-right: 60px;
}

.about-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.about-content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-visual-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.values-section {
    background-color: var(--light-color);
    padding: 80px 20px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 17px;
    color: var(--text-color);
}

.story-section {
    padding: 80px 20px;
}

.story-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-visual-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-visual-left svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.story-content-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.team-section {
    background-color: var(--light-color);
    padding: 80px 20px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-member-visual {
    margin: 0 auto 24px;
    width: 200px;
    height: 200px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-role {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-color);
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-about-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-light);
}

/* Services Page Styles */
.services-full-list {
    padding: 80px 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-intro-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid var(--light-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 0 20px;
}

.service-number {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(74, 124, 158, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.service-list {
    list-style: none;
    margin: 24px 0;
}

.service-list li {
    font-size: 17px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-box {
    background-color: var(--light-color);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.service-pricing-box.highlighted {
    background: linear-gradient(135deg, rgba(74, 124, 158, 0.1), rgba(107, 163, 200, 0.1));
    border-left-color: var(--secondary-color);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 8px;
    font-weight: 600;
}

.service-highlight {
    background-color: rgba(74, 124, 158, 0.1);
    padding: 16px 20px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 600;
    color: var(--dark-color);
}

.service-detail-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.pricing-info-section {
    background-color: var(--light-color);
    padding: 60px 20px;
}

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

.pricing-info-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.pricing-info-split {
    display: flex;
    gap: 60px;
}

.pricing-info-left,
.pricing-info-right {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.pricing-info-left h3,
.pricing-info-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-info-left ul,
.pricing-info-right ul {
    list-style: none;
}

.pricing-info-left ul li,
.pricing-info-right ul li {
    font-size: 17px;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.pricing-info-left ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-info-right ul li:before {
    content: "−";
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: 700;
}

.cta-services {
    padding: 80px 20px;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-services-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-split-section {
    padding: 80px 20px;
    display: flex;
    gap: 60px;
}

.contact-info-left {
    flex: 1;
    padding-right: 40px;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-color);
}

.contact-map-right {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

.map-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-hours-detail {
    background-color: var(--light-color);
    padding: 60px 20px;
}

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

.hours-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.hours-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.faq-section {
    padding: 80px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: var(--light-color);
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-color);
}

.cta-contact {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
}

.cta-contact-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-contact-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 32px;
}

.cta-contact-content a:not(.btn-primary-large) {
    color: var(--white);
    text-decoration: underline;
}

/* Thanks Page Styles */
.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 20px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-icon {
    margin: 0 auto 40px;
    width: 120px;
    height: 120px;
}

.thanks-info {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.thanks-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-info-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.thanks-steps {
    display: flex;
    gap: 40px;
}

.thanks-step {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
}

.thanks-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.thanks-step p {
    font-size: 16px;
    color: var(--text-color);
}

.thanks-service-info {
    padding: 60px 20px;
}

.service-info-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-info-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.service-summary {
    background-color: var(--light-color);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-summary p {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

#service-price-display {
    font-size: 24px;
    color: var(--primary-color);
}

.service-note {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-additional {
    background-color: var(--light-color);
    padding: 80px 20px;
}

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

.thanks-additional-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.info-cards {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    color: var(--text-color);
}

.thanks-cta {
    padding: 80px 20px;
    text-align: center;
}

.thanks-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px 80px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--dark-color);
}

.legal-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-color);
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 16px 20px;
        border-bottom: 1px solid var(--light-color);
    }

    .hero-split,
    .intro-split,
    .service-item-split,
    .trust-split,
    .testimonials-grid,
    .process-split-grid,
    .form-container-split,
    .footer-container,
    .about-intro-split,
    .story-split,
    .team-grid,
    .service-detail-split,
    .pricing-info-split,
    .contact-split-section,
    .thanks-steps,
    .info-cards,
    .thanks-cta-buttons {
        flex-direction: column;
    }

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

    .hero-content-left,
    .intro-visual-left,
    .intro-content-right,
    .about-content-left,
    .contact-info-left {
        padding: 40px 20px;
    }

    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

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

    .services-split-container {
        gap: 40px;
    }

    .service-item-split {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-content-left h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .btn-primary-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
        bottom: 10px;
    }

    .btn-sticky {
        width: 100%;
    }

    .cookie-content {
        padding: 0;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

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