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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.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;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    padding: 6px 12px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
}

.ad-disclosure span {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2c5f2d;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5f2d;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.85), rgba(44, 95, 45, 0.7));
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-section {
    padding: 80px 0;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

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

.two-col-layout.reverse {
    flex-direction: row-reverse;
}

.col-image,
.col-text {
    flex: 1;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.col-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.col-text p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.benefits-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1e4620;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 32px;
    color: #546e7a;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 0;
}

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c5f2d;
    text-align: center;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #27ae60;
    margin-bottom: 24px;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 15px;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #546e7a;
    text-align: center;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #bdc3c7;
}

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #2c5f2d 0%, #27ae60 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

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

.content-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    object-fit: cover;
}

.text-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.text-content h4 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

.text-content p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.text-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.text-content ul li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.specialty-area {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.specialty-area h4 {
    margin-top: 0;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 16px;
}

.btn-service-cta:hover {
    background-color: #1e4620;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block,
.contact-visual {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-info-block h3:first-child {
    margin-top: 0;
}

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

.email-display {
    font-weight: 600;
    color: #2c5f2d;
}

.note-small {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 4px;
}

.contact-note {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #1b5e20;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.additional-info {
    padding: 80px 0;
}

.additional-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.additional-info ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.additional-info ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.selected-service-info {
    font-size: 16px;
    color: #1b5e20;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dcdcdc;
}

.cookies-table th {
    font-weight: 600;
    color: #2c5f2d;
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

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

    .hero-content p {
        font-size: 16px;
    }

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

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

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

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

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

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

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