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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #4CAF50;
    --transition: all 0.3s ease;
}

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

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

ul {
    list-style: none;
}

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

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

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

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

.hero-left {
    padding: 4rem;
    display: flex;
    align-items: center;
}

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

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

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

.hero-right {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

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

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.value-split {
    display: flex;
    align-items: center;
}

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

.value-left {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.value-right {
    padding: 4rem;
}

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

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.value-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.value-list {
    margin: 2rem 0;
}

.value-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

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

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

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

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

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

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.services-preview-split {
    display: flex;
    align-items: center;
    min-height: 700px;
}

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

.services-left {
    padding: 4rem;
}

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

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.service-cards-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.service-card-mini {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-mini h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-card-mini .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.services-right {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}

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

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

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

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

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-split {
    display: flex;
    align-items: center;
}

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

.process-left {
    background: var(--bg-light);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.process-right {
    padding: 4rem;
}

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

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.3;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.faq-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

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

.faq-left {
    padding: 4rem;
}

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

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.faq-right {
    background: var(--bg-white);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.form-left-info,
.form-right-form {
    flex: 1;
}

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

.form-left-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.form-benefits li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.final-cta {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: var(--bg-white);
}

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

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

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

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
}

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

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.sticky-cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-cookie-reject:hover {
    border-color: var(--bg-white);
}

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

.page-hero-split .hero-left {
    flex: 1;
    padding: 4rem;
}

.page-hero-split .hero-right {
    flex: 1;
    min-height: 60vh;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.story-left {
    background: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.story-right {
    padding: 4rem;
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.values-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

.numbers-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

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

.numbers-left {
    padding: 4rem;
}

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

.numbers-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.number-item {
    flex: 0 0 calc(50% - 1.5rem);
}

.big-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.number-item p {
    color: var(--text-light);
}

.numbers-right {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mission-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.mission-left {
    background: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mission-right {
    padding: 4rem;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.team-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
}

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

.page-hero-services {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.hero-subtitle-services {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.services-full {
    padding: 4rem 2rem;
}

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

.service-item-split {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

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

.service-left {
    background: var(--bg-light);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-right {
    padding: 4rem;
}

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

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

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

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

.comparison-card {
    flex: 0 0 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.included-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.included-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

.cta-services {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: var(--bg-white);
}

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

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

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

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

.contact-left {
    padding: 2rem 4rem 2rem 2rem;
}

.contact-info {
    max-width: 500px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

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

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

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

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

.contact-note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-right {
    padding: 2rem;
}

.contact-map {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-caption {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-contact {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.faq-list-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.cta-contact {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.thanks-container {
    text-align: center;
    max-width: 700px;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.thanks-service {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

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

.thanks-info {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.info-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

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

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

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

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

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

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

.cookies-table thead {
    background: var(--bg-light);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .services-preview-split,
    .process-split,
    .faq-split,
    .story-split,
    .numbers-split,
    .mission-split,
    .service-item-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-right,
    .value-left,
    .services-right,
    .process-left,
    .faq-right,
    .story-left,
    .numbers-right,
    .mission-left,
    .service-left {
        min-height: 400px;
    }

    .testimonials-grid,
    .team-grid,
    .steps-grid,
    .info-grid {
        flex-direction: column;
    }

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

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

    .comparison-card,
    .included-item {
        flex: 0 0 100%;
    }

    .numbers-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .number-item {
        flex: 0 0 100%;
    }
}

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

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .center-heading {
        font-size: 2rem;
    }

    .value-content h2,
    .services-content h2,
    .process-content h2,
    .faq-content h2,
    .story-content h2,
    .numbers-content h2,
    .mission-content h2,
    .service-content h2 {
        font-size: 2rem;
    }

    .cta-container h2,
    .final-cta-content h2 {
        font-size: 2rem;
    }

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

    .sticky-cta {
        display: none;
    }

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

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

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