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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4263;
    --accent-color: #c84b31;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent-color);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-cookie.accept:hover {
    background: #a53e28;
}

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

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

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

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

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

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-right {
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

.btn-large {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

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

.stats-bar {
    display: flex;
    background: var(--primary-color);
    color: var(--white);
}

.stat-item {
    flex: 1;
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.split-container {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

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

.split-text-left,
.split-text-right {
    padding: 4rem;
}

.split-text-left-wide {
    flex: 1.5;
    padding: 4rem;
}

.split-image-right-narrow {
    flex: 0.5;
}

.split-text-left h2,
.split-text-right h2,
.split-text-left-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text-left p,
.split-text-right p,
.split-text-left-wide p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.split-image-right img,
.split-image-left img,
.split-image-right-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-section {
    background: var(--light-bg);
}

.insight-box {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.insight-box p {
    margin: 0;
    font-style: italic;
}

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

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.methodology-section {
    padding: 6rem 2rem;
}

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

.method-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

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

.method-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

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

.services-preview {
    background: var(--secondary-color);
    color: var(--white);
}

.services-preview .split-text-right h2,
.services-preview .split-text-left h2 {
    color: var(--white);
}

.services-preview .split-text-right p,
.services-preview .split-text-left p {
    color: rgba(255, 255, 255, 0.9);
}

.service-cards-section {
    padding: 4rem 0;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    min-height: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.service-card-content,
.service-card-image {
    flex: 1;
}

.service-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

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

.service-card-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.75rem;
}

.service-card-image {
    overflow: hidden;
}

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

.testimonial-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 2rem;
}

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

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

.testimonial-container cite {
    font-size: 1.125rem;
    font-style: normal;
    opacity: 0.8;
}

.case-preview-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.case-preview-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.case-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.case-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
}

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

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

.cta-section-primary,
.cta-section-secondary {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-section-secondary {
    background: var(--light-bg);
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.cta-section-primary .cta-content-center h2 {
    color: var(--white);
}

.cta-section-secondary .cta-content-center h2 {
    color: var(--primary-color);
}

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

.cta-section-primary .cta-content-center p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section-secondary .cta-content-center p {
    color: var(--text-light);
}

.why-different-section {
    padding: 6rem 0;
}

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

.reason-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

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

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
}

.main-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(200, 75, 49, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.final-value-section {
    padding: 6rem 2rem;
}

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

.value-point {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.value-point h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-point p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

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

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

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

.footer-col a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.page-hero {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

.hero-content-center p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.story-section,
.philosophy-section,
.team-intro-section,
.values-section,
.approach-detail-section,
.commitment-section {
    padding: 6rem 2rem;
}

.story-section {
    background: var(--light-bg);
}

.content-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

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

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

.values-section {
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

.approach-steps {
    margin-top: 3rem;
}

.approach-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    background: var(--accent-color);
    color: var(--white);
    width: 100px;
    height: 100px;
    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.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.commitment-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.commitment-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.commitment-box p:last-child {
    margin-bottom: 0;
}

.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.services-intro {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-detailed {
    padding: 4rem 2rem;
}

.service-detailed.alt-bg {
    background: var(--light-bg);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem;
}

.service-title-section {
    margin-bottom: 1.5rem;
}

.service-title-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.service-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.service-detail-body {
    padding: 3rem;
}

.service-description h3 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-description h3:first-child {
    margin-top: 0;
}

.service-description p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-description ul {
    margin: 1.5rem 0;
}

.service-description li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    padding-left: 2rem;
    position: relative;
}

.service-description li:last-child {
    border-bottom: none;
}

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

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

.pricing-notes-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.pricing-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.pricing-info p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.pricing-info ul {
    margin: 1rem 0 1.5rem 2rem;
}

.pricing-info li {
    list-style: disc;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.custom-engagement-section {
    padding: 5rem 2rem;
}

.custom-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.custom-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.custom-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

.contact-card a {
    color: var(--accent-color);
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-approach-section,
.visit-info-section,
.faq-contact-section {
    padding: 4rem 2rem;
}

.contact-approach-section {
    background: var(--white);
}

.expectation-list {
    margin-top: 3rem;
}

.expectation-item {
    margin-bottom: 2.5rem;
}

.expectation-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.visit-info-section {
    background: var(--light-bg);
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

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

.selected-service-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--accent-color);
}

.thanks-next-steps {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

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

.step-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.thanks-additional-info {
    padding: 4rem 2rem;
}

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

.info-cards {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.info-card a {
    color: var(--accent-color);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.legal-section li {
    list-style: disc;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: var(--accent-color);
}

.legal-section a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

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

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

    .stats-bar {
        flex-wrap: wrap;
    }

    .stat-item {
        flex-basis: 50%;
    }
}

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

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

    .hero-content p {
        font-size: 1.125rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

    .approach-step {
        flex-direction: column;
    }

    .step-number {
        width: 80px;
        height: 80px;
    }

    .legal-container {
        padding: 2rem;
    }
}

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

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

    .stat-item {
        flex-basis: 100%;
    }

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

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