* {
    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: #2c3e50;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f3f;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    border: 1px solid #e0e0e0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #2c5f3f 0%, #3a7853 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #2c5f3f;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.intro-block {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

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

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

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

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f3f;
}

.intro-right p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.services-overview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-overview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f3f;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #f0f0f0;
}

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

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f3f;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service {
    background: #2c5f3f;
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.select-service:hover {
    background: #234a32;
}

.form-section {
    display: flex;
    background: #f8f9fa;
    margin: 6rem 0;
}

.form-content {
    flex: 1;
    padding: 5rem 6rem;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f3f;
}

.form-content > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

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

.cta-submit {
    background: #2c5f3f;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-submit:hover {
    background: #234a32;
    transform: translateY(-2px);
}

.form-visual {
    flex: 0.8;
    background: #d0d0d0;
    overflow: hidden;
}

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

.process-info {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.process-info h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f3f;
}

.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.step {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f3f;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f3f;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-block p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-block ul li {
    margin-bottom: 0.8rem;
}

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

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #234a32;
}

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

.cookie-reject:hover {
    background: #5f6c6d;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5f3f;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display p {
    margin: 0;
    color: #2c5f3f;
    font-weight: 600;
}

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

    .hero-content {
        padding: 3rem 2rem;
    }

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

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

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

    .process-steps {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 1rem);
    }
}

.page-hero {
    background: linear-gradient(135deg, #2c5f3f 0%, #3a7853 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f3f;
}

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

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

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

.values-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #2c5f3f;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.experience-block {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f3f;
    text-align: center;
}

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

.services-detail-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-detail-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c5f3f;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

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

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f3f;
}

.service-detail-content .price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f3f;
    margin-bottom: 1.5rem;
}

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

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

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

.info-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5f3f;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-block p {
    margin: 0.5rem 0;
    color: #555;
}

.contact-visual {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #34495e;
}

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #2c5f3f;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.thanks-details {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2c5f3f;
}

.thanks-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-link:hover {
    background: #234a32;
}

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

    .service-detail-item {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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