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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ec4;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --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 24px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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);
}

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 20px;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    max-width: 550px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e85a2a;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
}

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

.trust-indicators {
    background: var(--bg-light);
    padding: 60px 20px;
}

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

.indicator {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.indicator-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.indicator-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.why-choose-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.split-image-left {
    flex: 1;
    max-width: 500px;
    margin-right: 60px;
}

.split-image-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.split-content-right {
    flex: 1;
    max-width: 600px;
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.split-content-right p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.services-preview {
    background: var(--bg-light);
    padding: 100px 20px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.services-split-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}

.service-card-split:hover {
    box-shadow: var(--shadow-md);
}

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

.service-image {
    flex: 1;
    max-width: 45%;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 16px;
}

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

.how-it-works-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    background: var(--bg-white);
}

.split-content-left {
    flex: 1;
    max-width: 550px;
    margin-right: 60px;
}

.split-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.split-image-right {
    flex: 1;
    max-width: 500px;
}

.split-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

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

.form-section-split {
    display: flex;
    padding: 100px 20px;
    background: var(--bg-white);
    gap: 60px;
}

.form-content-left {
    flex: 1;
    max-width: 450px;
}

.form-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-benefit svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.form-benefit span {
    font-size: 1rem;
    color: var(--text-medium);
}

.form-container-right {
    flex: 1;
    max-width: 550px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    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: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

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

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 24px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background: white;
    color: var(--text-dark);
}

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: var(--bg-light);
    gap: 60px;
}

.page-hero-simple {
    background: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.values-split-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-card-split {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.value-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

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

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cta-section-split {
    background: var(--primary-color);
    padding: 80px 20px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.services-detailed {
    padding: 60px 20px 100px;
}

.service-detail-split {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.service-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1.2;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
}

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

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

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

.warranty-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.warranty-text {
    flex: 1;
}

.warranty-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.warranty-image {
    flex: 1;
    max-width: 400px;
}

.warranty-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.cta-section-centered h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.contact-split-section {
    display: flex;
    padding: 80px 20px 100px;
    gap: 60px;
}

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

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.contact-map-side {
    flex: 1;
    max-width: 600px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

.map-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.map-info h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.map-info p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.next-steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

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

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.next-step p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.thanks-info p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page {
    padding: 80px 20px 100px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

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

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

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

.cookie-table td {
    color: var(--text-medium);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .hero-split,
    .why-choose-split,
    .how-it-works-split,
    .story-split,
    .team-split,
    .page-hero-split,
    .form-section-split,
    .contact-split-section,
    .warranty-content-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content-right,
    .split-content-left,
    .split-image-left,
    .split-image-right {
        max-width: 100%;
        padding-right: 0;
        margin-right: 0;
    }

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

    .service-image {
        max-width: 100%;
    }

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

    .section-header-centered h2,
    .testimonials-section h2,
    .values-section h2 {
        font-size: 2.2rem;
    }
}

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

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

    .menu-toggle {
        display: flex;
    }

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

    .thanks-container h1 {
        font-size: 2.2rem;
    }

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

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

    .indicators-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .footer-container {
        flex-direction: column;
    }
}

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

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 24px;
    }

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

    .thanks-actions a {
        width: 100%;
    }
}