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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.header-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #4CAF50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4CAF50;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #45a049;
}

.hero-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.intro-image {
    flex: 1;
    background-color: #ddd;
}

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

.intro-content {
    flex: 1;
    padding: 3rem 5%;
}

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

.intro-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-grid {
    padding: 5rem 5%;
    background-color: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.service-card-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 3rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    background-color: #ddd;
}

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

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

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

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

.process-split {
    display: flex;
    align-items: stretch;
    background-color: #f9f9f9;
}

.process-content {
    flex: 1.2;
    padding: 5rem 5%;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    color: #555;
}

.process-image {
    flex: 0.8;
    background-color: #ddd;
}

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

.testimonials-split {
    padding: 5rem 5%;
    background-color: #fff;
}

.testimonials-split h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.form-section-split {
    display: flex;
    padding: 5rem 0;
    background-color: #fafafa;
}

.form-intro {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.05rem;
    color: #555;
}

.form-container {
    flex: 1;
    padding: 3rem 5%;
    background-color: #fff;
}

.order-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-consent {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label a {
    color: #4CAF50;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #4CAF50;
    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: #45a049;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
}

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

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

.footer-split {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-main {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-accept {
    background-color: #4CAF50;
    color: #fff;
}

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

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

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

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 400px;
    background-color: #fafafa;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f0f0f0;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: #555;
}

.page-hero-image {
    flex: 1;
    background-color: #ddd;
}

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

.about-content-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.about-text {
    flex: 1.2;
    padding: 3rem 5%;
}

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

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-image {
    flex: 0.8;
    background-color: #ddd;
}

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

.values-split {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 5rem 0;
}

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

.values-image {
    flex: 1;
    background-color: #ddd;
}

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

.values-text {
    flex: 1;
    padding: 3rem 5%;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

.experience-split {
    padding: 5rem 5%;
    background-color: #fff;
}

.experience-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.approach-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.approach-image {
    flex: 1;
    background-color: #ddd;
}

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

.approach-text {
    flex: 1;
    padding: 3rem 5%;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.cta-section-split {
    padding: 5rem 5%;
    background-color: #4CAF50;
    text-align: center;
}

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

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #4CAF50;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #fff;
}

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

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

.service-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-text h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-text ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-text {
    font-size: 0.9rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #4CAF50;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #45a049;
}

.service-detail-image {
    flex: 1;
    background-color: #ddd;
}

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

.materials-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

.materials-split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.material-text {
    flex: 1;
}

.material-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.material-image {
    flex: 1;
    background-color: #ddd;
}

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

.warranty-section-split {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.warranty-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    max-width: 800px;
}

.contact-split {
    display: flex;
    padding: 5rem 0;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    padding: 0 5%;
}

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

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

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-map-block {
    flex: 1;
    padding: 0 5%;
}

.contact-map-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-map-block p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background-color: #ddd;
    height: 400px;
}

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

.contact-cta-section {
    padding: 5rem 5%;
    background-color: #4CAF50;
    text-align: center;
}

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

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

.thanks-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

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

.selected-service-info {
    margin-bottom: 2rem;
}

.selected-service-info p {
    font-size: 1rem;
    color: #4CAF50;
    font-weight: 600;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #4CAF50;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #45a049;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #fff;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: #fff;
}

.next-steps-split {
    padding: 5rem 5%;
    background-color: #fff;
}

.next-steps-split h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.steps-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-box {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.step-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-box p {
    font-size: 0.95rem;
    color: #555;
}

.legal-page {
    padding: 5rem 5%;
    background-color: #fff;
}

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

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

.legal-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .process-split,
    .form-section-split,
    .page-hero-split,
    .about-content-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .materials-split,
    .contact-split {
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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