* {
    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: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #2c7a3f;
    color: #fff;
}

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

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

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

.navigation {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a3f;
}

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

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

.nav-links a:hover {
    color: #2c7a3f;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c7a3f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #245c31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 63, 0.3);
}

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

.intro-image {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.services-overview {
    background: #f8f9fa;
    padding: 80px 40px;
}

.services-overview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.service-image {
    height: 240px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c7a3f;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #2c7a3f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #245c31;
}

.btn-select-service:active {
    transform: scale(0.98);
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 80px;
    padding: 0 40px;
}

.process-text {
    flex: 1.2;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #2c7a3f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 12px;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

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

.btn-submit {
    padding: 16px;
    background: #2c7a3f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #245c31;
}

.btn-submit:active {
    transform: scale(0.98);
}

.testimonials {
    background: #fff;
    padding: 80px 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c7a3f;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2c7a3f;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #2c7a3f;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2c7a3f;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c7a3f;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #2c7a3f;
    margin: 24px 0;
}

.btn-back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 36px;
    background: #2c7a3f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #245c31;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c7a3f;
}

.page-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.page-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.page-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-container ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info-block {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c7a3f;
}

.contact-info-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

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

.about-content {
    flex: 1.5;
}

.about-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c7a3f;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    align-self: flex-start;
    position: sticky;
    top: 90px;
}

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

.services-page {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-image {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c7a3f;
    margin: 24px 0;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a3f;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .about-split,
    .service-detail {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .process-text {
        padding: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 32px);
    }

    .nav-container {
        padding: 0 20px;
    }

    .about-image {
        position: static;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .process-text h2 {
        font-size: 28px;
    }

    .services-overview h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-section {
        padding: 40px 24px;
    }

    .footer-content {
        gap: 32px;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .ad-disclosure {
        display: none;
    }

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