:root {
    --primary: #1a56db;
    --primary-dark: #1444a8;
    --primary-light: #3b7ddd;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    border-color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

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

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

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

.btn-full {
    width: 100%;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: 50px;
    margin-bottom: 16px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.hero {
    padding-top: 120px;
    min-height: 90vh;
}

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

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

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

.hero-content {
    padding: 60px 20px 60px 60px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    height: 90vh;
    min-height: 600px;
}

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

.stats-section {
    background-color: var(--secondary);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

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

.benefits-section {
    padding: 100px 0;
}

.benefits-section .split-left img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefits-section .split-right {
    padding: 40px;
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefits-section p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.benefits-list {
    margin-bottom: 32px;
}

.benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-header.centered p {
    margin: 0 auto;
}

.services-preview {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.service-card .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.card-link {
    font-weight: 600;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

.services-cta {
    text-align: center;
}

.process-section {
    padding: 100px 0;
}

.process-section .split-left {
    padding: 40px;
}

.process-section .split-right img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

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

.step-content h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    color: var(--secondary);
}

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

.cta-section {
    padding: 100px 0;
}

.cta-wrapper {
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cta-content {
    padding: 60px;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-benefits {
    display: flex;
    gap: 24px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.cta-benefits li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0;
}

.trust-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 32px;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links,
.footer-contact {
    flex: 1;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: var(--transition);
}

.sticky-cta:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    padding: 100px 0;
}

.about-intro .split-left img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-intro .split-right {
    padding: 40px;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.about-intro p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

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

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

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.team-section {
    padding: 100px 0;
}

.team-content {
    padding: 40px;
}

.team-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

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

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

.approach-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.approach-content {
    display: flex;
    gap: 60px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

.approach-features {
    flex: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-feature {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.approach-feature h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.approach-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-banner-content {
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.services-full {
    padding: 80px 0;
}

.service-detail {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.service-detail.featured {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
}

.service-detail-title {
    flex: 1;
}

.service-detail-title h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.service-detail-title p {
    color: var(--text-light);
    margin: 0;
}

.service-detail-price {
    text-align: right;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-includes li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.pricing-table {
    margin-bottom: 24px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-value {
    font-weight: 600;
    color: var(--secondary);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: inherit;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-card-content h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-card-content p {
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    font-size: 0.85rem;
    margin-top: 8px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.hours-row span:first-child {
    color: var(--text);
}

.hours-row span:last-child {
    color: var(--text-light);
}

.contact-map {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
}

.contact-map img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay p {
    color: white;
    font-weight: 500;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
}

.info-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

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

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

.info-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-section {
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--success);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-service {
    background-color: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.thanks-service p {
    margin: 0;
    color: var(--text);
}

.thanks-info {
    text-align: left;
    background-color: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.thanks-info h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 24px;
}

.thanks-steps li {
    margin-bottom: 12px;
    color: var(--text);
}

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

.legal-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.legal-hero p {
    color: var(--text-light);
}

.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text p {
    color: var(--text);
    margin-bottom: 16px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text ul {
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--text);
}

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

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

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

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

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

    .split-section.reverse {
        flex-direction: column;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }

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

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        height: 400px;
        min-height: auto;
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

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

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

    .service-detail-header {
        flex-wrap: wrap;
    }

    .service-detail-price {
        width: 100%;
        text-align: left;
        margin-top: 16px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
    }

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

    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 12px;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }

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

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

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