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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f4f;
    text-decoration: none;
}

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

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

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

.hero-section {
    min-height: 520px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    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;
    background: #2c5f4f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #234a3d;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5f4f;
    border: 2px solid #2c5f4f;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.mission-block {
    padding: 80px 24px;
    background: #f8faf9;
}

.content-wrapper-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.mission-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.mission-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-showcase {
    padding: 100px 24px;
}

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

.section-header-left {
    margin-bottom: 60px;
}

.label-tag {
    display: inline-block;
    color: #2c5f4f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header-left h2 {
    font-size: 38px;
    color: #1a3a2e;
}

.services-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-horizontal {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    min-height: 360px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.service-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
}

.link-arrow {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.cta-inline-block {
    padding: 80px 24px;
    background: #e8f0ed;
}

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

.cta-box {
    text-align: center;
    padding: 48px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.cta-box p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 28px;
}

.form-section {
    padding: 100px 24px;
    background: #f8faf9;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
}

.form-wrapper {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 36px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a3a2e;
}

.form-header p {
    font-size: 17px;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #2c5f4f;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.value-item {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #c9d9d2;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 200;
    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: 24px;
}

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

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

.btn-cookie-accept {
    background: #2c5f4f;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}

.page-header {
    background: #f8faf9;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.page-header p {
    font-size: 19px;
    color: #4a5568;
}

.about-intro {
    padding: 100px 24px;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a3a2e;
}

.content-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.image-container {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.expertise-section {
    padding: 80px 24px;
    background: #f8faf9;
}

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

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.expertise-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.values-detailed {
    padding: 100px 24px;
}

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

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 36px;
    background: #f8faf9;
    border-radius: 8px;
}

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

.value-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 24px;
    background: #e8f0ed;
}

.services-detailed {
    padding: 100px 24px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-header {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f4f;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-body p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-body h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #1a3a2e;
}

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

.service-detail-body ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.services-cta {
    padding: 80px 24px;
    background: #f8faf9;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.services-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 36px;
    color: #1a3a2e;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c5f4f;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4a5568;
}

.contact-cta {
    padding: 80px 24px;
    background: #f8faf9;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a3a2e;
}

.contact-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 24px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.next-steps {
    padding: 80px 24px;
    background: #f8faf9;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a2e;
}

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f4f;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 24px 100px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 36px;
    color: #1a3a2e;
}

.legal-page h2 {
    font-size: 26px;
    margin: 36px 0 16px;
    color: #1a3a2e;
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c5f4f;
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

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

    .service-image {
        min-height: 240px;
    }

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

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

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

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

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

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

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

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