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

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #34495e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.services-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

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

.btn-select:hover {
    background-color: #234a23;
}

.form-section {
    padding: 100px 0;
}

.container-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 30px;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.form-right {
    flex: 1;
}

.inquiry-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

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

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

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

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

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

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    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;
    transition: color 0.3s;
}

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

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

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

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

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    line-height: 1;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

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

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

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

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.additional-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

#service-confirmation {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 20px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.step-box {
    flex: 1;
    max-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.step-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234a23;
}

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #495057;
}

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

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

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

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

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

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

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

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

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

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

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