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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0 1rem;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #1a5490;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
    padding: 3rem 2rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text-block p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 50%;
    max-width: 700px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #134073;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #fff;
    color: #1a5490;
    text-decoration: none;
    border: 2px solid #1a5490;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #1a5490;
    color: #fff;
}

.intro-offset {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

.intro-narrow {
    flex: 1;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-image-small {
    flex: 0 0 400px;
    background-color: #f0f0f0;
}

.intro-image-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid-asymmetric {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 5%;
}

.section-header-left h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.section-header-left p {
    font-size: 1.2rem;
    color: #666;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-offset-1 {
    margin-top: 0;
}

.service-offset-2 {
    margin-top: 3rem;
}

.service-offset-3 {
    margin-top: 1.5rem;
}

.service-offset-4 {
    margin-top: 2.5rem;
}

.service-offset-5 {
    margin-top: 0.5rem;
}

.service-offset-6 {
    margin-top: 2rem;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    color: #555;
    margin: 0 1.5rem 1rem;
    font-size: 1rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1rem 1.5rem;
}

.btn-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #1a5490;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #134073;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

#selected-service-display {
    font-weight: 600;
    color: #1a5490;
}

.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: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.btn-submit {
    padding: 1rem;
    background-color: #1a5490;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #134073;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #1a5490;
    color: #fff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-section-stacked {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.testimonial-section-stacked h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.testimonials {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px 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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #28a745;
    color: #fff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #fff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.page-hero-small {
    padding: 4rem 2rem;
    background-color: #1a5490;
    color: #fff;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero-small p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detail-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.services-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #f0f0f0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.cta-bottom-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.about-content-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.about-image-block {
    flex: 0 0 45%;
    background-color: #f0f0f0;
}

.about-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.team-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.team-image {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f0f0f0;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #1a5490;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-about-section {
    padding: 4rem 2rem;
    background-color: #1a5490;
    text-align: center;
    color: #fff;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
}

.map-placeholder-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

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

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

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

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
    text-align: left;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a5490;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: #1a5490;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

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

    .menu-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        text-align: center;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .intro-image-small {
        flex: 1;
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5,
    .service-offset-6 {
        margin-top: 0;
    }

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

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-image-block {
        flex: 1;
        width: 100%;
    }

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

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

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