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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

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

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

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

.content-left h2,
.content-right h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.content-left p,
.content-right p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.visual-right,
.visual-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.visual-right img,
.visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-main {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-main h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 25px 25px;
    border-radius: 5px;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 100px 0;
    background-color: #ecf0f1;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    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: #3498db;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

.trust-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    max-width: 350px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
    text-align: right;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 50px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background-color: #1a252f;
    padding: 25px 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content {
    padding: 90px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-item {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: calc(50% - 18px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.approach-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 70px;
}

.detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.detail-info {
    flex: 1;
    padding: 50px;
}

.detail-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.detail-info p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 18px;
    line-height: 1.6;
}

.detail-info ul {
    margin: 25px 0 30px 20px;
}

.detail-info li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.detail-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warranty-section {
    padding: 80px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.warranty-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.warranty-section p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 600px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.visit-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.visit-section p {
    font-size: 18px;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirm {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.contact-reminder {
    margin-top: 40px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.contact-reminder h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-reminder p {
    font-size: 17px;
    color: #34495e;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-page h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

    .service-card {
        width: calc(50% - 18px);
    }

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .service-card {
        width: 100%;
    }

    .testimonials-flex {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        width: 100%;
    }

    .detail-visual,
    .contact-visual {
        height: 300px;
    }

    .thanks-content {
        padding: 40px 25px;
    }

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