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

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

.ad-notice {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

.main-nav {
    background-color: #2d7a3f;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #e67e22;
}

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

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

.intro-alternate {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #e8f5e9;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d7a3f;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555555;
}

.services-preview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s;
    min-width: 280px;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2d7a3f;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #666666;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    margin: 0 20px 20px;
}

.trust-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 70px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2d7a3f;
}

.trust-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.trust-stats {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #f39c12;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666666;
    margin-top: 8px;
}

.testimonials-flow {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.testimonials-container {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-left: 4px solid #2d7a3f;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.order-form-section {
    background-color: #e8f5e9;
    padding: 80px 20px;
    margin-top: 80px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d7a3f;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
    font-size: 16px;
}

.order-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #2d7a3f;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #f39c12;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #4a5f78;
    border-bottom: 1px solid #4a5f78;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #f39c12;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #2d7a3f;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #e8f5e9;
    border-radius: 4px;
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-container .service-info {
    font-size: 20px;
    font-weight: 600;
    color: #f39c12;
    margin: 24px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    background-color: #2d7a3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d7a3f;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.about-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2d7a3f;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 900px;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2d7a3f;
}

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

.about-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d7a3f;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.services-page-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 20px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2d7a3f;
}

.services-page-hero p {
    font-size: 19px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-alternate,
    .trust-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-menu {
        gap: 16px;
    }

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