* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

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

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

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f9fafb;
}

.hero-text h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background-color: #e8ebe9;
}

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

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

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

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

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

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

.content-text {
    flex: 1;
}

.content-image {
    flex: 1;
    background-color: #f0f0f0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.content-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.services-showcase {
    padding: 100px 0;
    background-color: #f9fafb;
}

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e8ebe9;
}

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

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 24px 16px;
    display: block;
}

.select-service {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    margin: 0 24px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.contact-form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-form {
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.selected-service-display {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    margin-top: 24px;
}

.selected-service-display p {
    margin: 8px 0;
    font-size: 15px;
}

.form-container {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

.disclaimer-box {
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #d4a017;
    border-radius: 6px;
}

.disclaimer-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8bc98d;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #333333;
}

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

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.values-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.team-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #4a4a4a;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.expertise-item {
    flex: 1 1 calc(50% - 16px);
    padding: 28px;
    background-color: #ffffff;
    border-radius: 8px;
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-box {
    text-align: center;
    background-color: #f9fafb;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

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

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

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

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

.service-detail-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.price-box {
    margin-top: 28px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

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

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-details {
    margin: 40px 0;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff8e8;
    border-left: 4px solid #d4a017;
    border-radius: 4px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.location-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.location-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9fafb;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.submission-details {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: left;
}

.submission-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.submission-details p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

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

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.step-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.legal-page h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

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

.legal-page li {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

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

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

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

    .values-grid,
    .expertise-list {
        flex-direction: column;
    }

    .value-item,
    .expertise-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

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

    .page-hero h2 {
        font-size: 36px;
    }
}