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

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

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

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

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

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a5a5a;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.cta-button {
    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;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #234d24;
}

.intro-text {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.value-split {
    display: flex;
    background-color: #ffffff;
    min-height: 500px;
}

.value-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

.benefit-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

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

.text-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.7;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 19px;
    color: #5a5a5a;
}

.consultation-form {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 16px;
    color: #5a5a5a;
    font-size: 16px;
    line-height: 1.6;
}

.price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
}

.service-select {
    display: block;
    padding: 16px 24px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-select input[type="radio"] {
    margin-right: 8px;
}

.service-select span {
    font-weight: 600;
    color: #2c5f2d;
}

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

.form-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

.submit-button {
    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;
}

.submit-button:hover {
    background-color: #234d24;
}

.trust-split {
    display: flex;
    background-color: #ffffff;
    min-height: 500px;
}

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

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

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

.trust-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

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

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

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

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

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

.footer-section p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
}

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

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

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

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

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.page-hero {
    background-color: #2c5f2d;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #e9f5e9;
}

.about-split {
    display: flex;
    background-color: #ffffff;
    min-height: 500px;
}

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

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

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

.about-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.approach-split {
    display: flex;
    background-color: #ffffff;
    min-height: 500px;
}

.approach-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

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

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

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

.service-price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 24px;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 40px;
    background-color: #2c5f2d;
}

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

.cta-box h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 20px;
    color: #e9f5e9;
    margin-bottom: 32px;
}

.cta-box .cta-button {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-box .cta-button:hover {
    background-color: #f8f9fa;
}

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1.5;
}

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    background-color: #f8f9fa;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: monospace;
    display: inline-block;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
}

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

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 600px;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.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 h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.btn-primary {
    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: #234d24;
}

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

.btn-secondary:hover {
    background-color: #5a6268;
}

.legal-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

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

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

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

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

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

.cookie-table th {
    background-color: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #ddd;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .trust-split,
    .about-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .services-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .nav-container {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .contact-image {
        min-height: 300px;
    }
}