* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4263;
    --accent-color: #c84b31;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.header-main {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background: #d65a41;
}

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--light-bg);
}

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

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

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

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #d65a41;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200,75,49,0.3);
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.intro-story {
    padding: 6rem 5%;
    background: white;
}

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

.story-text {
    flex: 2;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-text p {
    font-size: 1.15rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.story-visual {
    flex: 1;
}

.visual-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-large {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.problem-amplify {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: white;
}

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

.split-image-right,
.split-text-left {
    flex: 1;
}

.split-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text-left p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.split-image-right img {
    border-radius: 12px;
    width: 100%;
}

.insight-reveal {
    padding: 6rem 5%;
    background: white;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.insight-lead {
    font-size: 1.25rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.insight-card {
    flex: 1;
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 10px;
}

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

.insight-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.trust-build {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

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

.trust-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-day {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-item p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.trust-right img {
    border-radius: 12px;
    width: 100%;
}

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: white;
}

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

.testimonial-container blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-container cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    opacity: 0.9;
}

.services-section {
    padding: 6rem 5%;
    background: white;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    background: var(--primary-color);
    color: white;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card.featured p {
    opacity: 0.95;
}

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

.service-card.featured .price {
    color: white;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #d65a41;
    transform: translateY(-2px);
}

.service-card.featured .btn-select-service {
    background: white;
    color: var(--primary-color);
}

.service-card.featured .btn-select-service:hover {
    background: var(--light-bg);
}

.cta-sticky-trigger {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.cta-content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-content-box p {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-inline-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-inline-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.benefits-reveal {
    padding: 6rem 5%;
    background: white;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.benefits-split {
    display: flex;
    gap: 3rem;
}

.benefit-item {
    flex: 1;
}

.benefit-item img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    width: 100%;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.urgency-section {
    padding: 5rem 5%;
    background: var(--accent-color);
    color: white;
}

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

.urgency-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.form-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}

.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: 600;
    color: var(--primary-color);
}

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

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

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

.btn-submit:hover {
    background: #d65a41;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: white;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-final-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-final-btn:hover {
    background: #d65a41;
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 1rem 5%;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--accent-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--light-bg);
}

.footer-main {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    margin-bottom: 0.7rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 6rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.about-hero-content,
.services-hero-content,
.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.about-story-split {
    padding: 6rem 5%;
    background: white;
}

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

.story-left-img,
.story-right-text {
    flex: 1;
}

.story-left-img img {
    border-radius: 12px;
    width: 100%;
}

.story-right-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-right-text p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

.philosophy-card {
    flex: 1;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
}

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

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

.team-overview {
    padding: 6rem 5%;
    background: white;
}

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

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-content p {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-split {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

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

.values-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.values-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.values-right img {
    border-radius: 12px;
    width: 100%;
}

.mission-statement {
    padding: 6rem 5%;
    background: var(--secondary-color);
    color: white;
}

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

.mission-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 5rem 5%;
    background: white;
}

.cta-about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cta-btn-about {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-about:hover {
    background: #d65a41;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 6rem 5%;
    background: white;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.badge-popular {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-left p,
.service-detail-right p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

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

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

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-period {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.service-detail-right img,
.service-detail-left img {
    border-radius: 12px;
    width: 100%;
}

.services-comparison {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

.comparison-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.comparison-item p {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.services-cta {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: white;
}

.services-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.services-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-btn-services {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-services:hover {
    background: #d65a41;
    transform: translateY(-2px);
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info,
.contact-image {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.contact-detail p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-detail a {
    color: var(--accent-color);
    transition: opacity 0.3s;
}

.contact-detail a:hover {
    opacity: 0.8;
}

.contact-image img {
    border-radius: 12px;
    width: 100%;
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.contact-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-cta-content p {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-btn-contact {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-contact:hover {
    background: #d65a41;
    transform: translateY(-2px);
}

.thanks-section {
    padding: 8rem 5%;
    background: var(--light-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

#service-confirmation {
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.btn-thanks-home,
.btn-thanks-services {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-thanks-home {
    background: var(--accent-color);
    color: white;
}

.btn-thanks-home:hover {
    background: #d65a41;
}

.btn-thanks-services {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-content {
    padding: 4rem 5%;
    background: white;
    min-height: 70vh;
}

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

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

.legal-date {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 3rem;
    display: block;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

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

.legal-container li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-container a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .story-container,
    .split-content,
    .trust-split,
    .benefits-split,
    .philosophy-grid,
    .contact-split {
        flex-direction: column;
    }

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

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

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

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

    .nav-toggle {
        display: block;
    }

    .hero-text-wrapper h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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