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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.navbar {
    background-color: #2c3e50;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link.active {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

.ad-notice {
    background-color: rgba(255,255,255,0.1);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ecf0f1;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #3498db;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.services-showcase {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.section-intro-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-intro-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro-centered p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.service-split {
    display: flex;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.form-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.form-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #ffffff;
}

.form-visual-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-content {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
}

.form-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-button {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-content-centered {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-card p {
    color: #555;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 6px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.page-header {
    padding: 5rem 2rem 3rem;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.service-detail-card {
    margin-bottom: 3rem;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-duration {
    margin-top: 1.5rem;
    font-style: italic;
    color: #7f8c8d;
}

.cta-services {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-services-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.process-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.process-split {
    display: flex;
    margin-bottom: 2rem;
    align-items: stretch;
}

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

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

.process-visual {
    flex: 1;
    min-height: 200px;
}

.about-cta {
    padding: 4rem 2rem;
    background-color: #34495e;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

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

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.access-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.access-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.access-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.access-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.access-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.access-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thanks-info {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #e8f8f5;
    border-radius: 6px;
    color: #27ae60;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-update {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: color 0.3s;
}

.legal-container a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .service-split,
    .form-container-split,
    .about-split,
    .contact-split,
    .service-card-split,
    .process-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1rem;
    }

    .trust-grid,
    .values-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

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

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

    .hero-content,
    .service-details,
    .form-content,
    .about-content,
    .contact-info {
        padding: 2rem;
    }
}