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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #1a252f;
    --accent-color: #3498db;
    --accent-hover: #2980b9;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    margin-top: 70px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--text-white);
}

.value-proposition {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.section-title-center {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.split-content-reverse {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.split-text {
    flex: 1;
    padding: 0 60px;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.stats-banner {
    padding: 60px 20px;
    background-color: var(--primary-color);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.text-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-hint {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-highlight {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonial-large {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.service-showcase {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.section-title-offset {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.engagement-form-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-benefits {
    list-style: none;
    margin-bottom: 0;
}

.form-benefits li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-indicators {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonial-grid {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.final-cta-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    background-color: var(--primary-color);
}

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

.cta-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-large {
    display: block;
    padding: 18px 36px;
    background-color: var(--text-white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.cta-large-secondary {
    display: block;
    padding: 18px 36px;
    background-color: transparent;
    color: var(--text-white);
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    border: 2px solid var(--text-white);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-large-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer {
    background-color: var(--secondary-color);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-column ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
    color: var(--text-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    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: 20px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 50vh;
    margin-top: 70px;
}

.page-hero-simple {
    padding: 120px 20px 80px;
    margin-top: 70px;
    background-color: var(--bg-light);
}

.page-hero-simple h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 240px;
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.stats-showcase {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.stats-about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 48px;
    justify-content: center;
}

.stat-about {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.stat-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

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

.commitment-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.cta-center {
    text-align: center;
    margin-top: 32px;
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    margin-bottom: 48px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

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

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

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

.service-detail-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 28px;
}

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

.service-detail-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-comparison {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 32px;
}

.comparison-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.comparison-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.comparison-note {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    margin-top: 40px;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    background-color: var(--bg-light);
    padding: 80px 60px;
}

.contact-info-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 20px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.contact-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

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

.contact-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-map-side {
    flex: 1;
    overflow: hidden;
}

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

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

.contact-approach {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.approach-step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

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

.approach-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-faqs {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-item {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

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

.final-contact-cta h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.final-contact-cta p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 32px;
}

.thanks-hero {
    padding: 120px 20px 80px;
    margin-top: 70px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    display: inline-block;
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.service-confirmation {
    font-size: 17px;
    color: var(--text-dark);
    margin: 0;
}

.service-confirmation strong {
    color: var(--accent-color);
}

.next-steps {
    text-align: left;
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.next-step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-thanks-primary {
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-thanks-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.thanks-note {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.thanks-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.thanks-resources {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.thanks-resources h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

.resources-intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.resource-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 260px;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

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

.legal-page {
    padding: 60px 20px 80px;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.legal-content strong {
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.table-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

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

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        min-height: 400px;
    }

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

    .split-text {
        padding: 0;
        margin-bottom: 40px;
    }

    .split-content-reverse .split-text {
        margin-bottom: 0;
        margin-top: 40px;
    }

    .final-cta-split {
        flex-direction: column;
        padding: 60px 20px;
    }

    .cta-left {
        padding-right: 0;
        margin-bottom: 32px;
        text-align: center;
    }

    .form-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-split {
        flex-direction: column;
    }

    .contact-info-side {
        padding: 60px 40px;
    }

    .contact-map-side {
        min-height: 400px;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 16px;
    }

    .page-hero-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .section-title-center,
    .section-title-offset {
        font-size: 32px;
    }

    .split-text h2 {
        font-size: 28px;
    }

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

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

    .trust-item,
    .value-item {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 calc(50% - 20px);
    }

    .stat-about {
        flex: 1 1 calc(50% - 24px);
    }

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

    .approach-step {
        flex: 1 1 calc(50% - 20px);
    }

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

    .contact-form {
        padding: 32px 24px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

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

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

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

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

    .cta-left h2,
    .final-contact-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .stats-container {
        flex-direction: column;
        gap: 32px;
    }

    .stat-item {
        width: 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .stat-about {
        flex: 1 1 100%;
    }

    .approach-step {
        flex: 1 1 100%;
    }
}