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

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.875rem;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f4d;
}

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

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

.nav-menu a:hover {
    color: #2c5f4d;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5f4d;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1f4838;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c5f4d;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c5f4d;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c5f4d;
    color: #ffffff;
}

.split-reverse {
    display: flex;
    background: #ffffff;
}

.split-section {
    display: flex;
    background: #ffffff;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.split-content p {
    font-size: 1.0625rem;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.inline-cta {
    display: inline-block;
    color: #2c5f4d;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    border-bottom: 2px solid #2c5f4d;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: #1f4838;
}

.text-cta {
    display: inline-block;
    color: #2c5f4d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c5f4d;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.text-cta:hover {
    color: #1f4838;
}

.insight-block {
    background: #1a3a2e;
    padding: 100px 20px;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.insight-card p {
    color: #d4e4dc;
    font-size: 1.0625rem;
}

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

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a2e;
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin: 24px 24px 12px;
    color: #1a3a2e;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0 24px 20px;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f4d;
    margin: 0 24px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    background: #2c5f4d;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1f4838;
}

.services-link-wrap {
    text-align: center;
    margin-top: 40px;
}

.consultation-form {
    padding: 100px 20px;
    background: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.form-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background: #2c5f4d;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1f4838;
}

.disclaimer-block {
    background: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-block p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.7;
}

.main-footer {
    background: #1a3a2e;
    color: #d4e4dc;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #2c5f4d;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
}

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

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

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

.cookie-btn.accept:hover {
    background: #1f4838;
}

.cookie-btn.reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.cookie-link {
    color: #2c5f4d;
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

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

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

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a3a2e;
}

.hero-content-centered p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a2e;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.value-block p {
    color: #5a6c7d;
    font-size: 1.0625rem;
}

.expertise-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.expertise-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a2e;
}

.expertise-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expertise-item {
    background: #ffffff;
    padding: 36px;
    border-left: 4px solid #2c5f4d;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a3a2e;
}

.expertise-item p {
    color: #5a6c7d;
    font-size: 1.0625rem;
}

.cta-section {
    padding: 100px 20px;
    background: #1a3a2e;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    color: #d4e4dc;
    margin-bottom: 32px;
}

.services-full {
    padding: 60px 20px;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
}

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

.service-detail-grid {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a3a2e;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c5f4d;
    margin: 24px 0 20px;
}

.contact-info-section {
    padding: 60px 20px;
    background: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a3a2e;
}

.detail-block {
    margin-bottom: 32px;
}

.detail-block h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #2c5f4d;
}

.detail-block p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

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

.thanks-section {
    padding: 120px 20px;
    background: #f8f9fa;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.thanks-details {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #2c5f4d;
}

.thanks-details p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

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

.legal-page {
    padding: 60px 20px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c5f4d;
}

.legal-content p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 1.0625rem;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #2c5f4d;
    text-decoration: none;
    border-bottom: 1px solid #2c5f4d;
}

.legal-content a:hover {
    color: #1f4838;
}

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

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

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

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content,
    .split-content {
        padding: 60px 24px;
    }

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

    .insight-grid,
    .services-cards,
    .values-grid,
    .footer-grid {
        flex-direction: column;
    }

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

    .service-detail-content {
        padding: 40px 24px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}