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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

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

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

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

.hero-text-content {
    max-width: 540px;
}

.hero-text-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c5f2d;
    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: 80px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1.15rem;
    text-align: center;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-split {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.split-container-reverse {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

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

.split-content h2,
.split-content h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-content h2 {
    font-size: 1.9rem;
}

.split-content h3 {
    font-size: 1.5rem;
}

.split-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #4a5568;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #34495e;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f9fafb;
    padding: 35px 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1e4620;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
}

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.btn-submit:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.trust-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.trust-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.trust-content a {
    color: #2c5f2d;
    text-decoration: none;
}

.trust-content a:hover {
    text-decoration: underline;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.reference-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.reference-text a {
    color: #60a5fa;
    text-decoration: none;
}

.reference-text a:hover {
    text-decoration: underline;
}

.disclaimer {
    border-top: 1px solid #374151;
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    margin-top: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #1e4620;
}

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

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

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4a5568;
}

.about-split,
.team-split {
    padding: 60px 0;
}

.about-split {
    background-color: #ffffff;
}

.team-split {
    background-color: #f8f9fa;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #2c5f2d;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split,
.service-detail-split-reverse {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-detail-content {
    flex: 1;
    padding: 50px 45px;
}

.service-detail-content h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.service-detail-content p {
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.6;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

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

.btn-service-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-service-select:hover {
    background-color: #1e4620;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f9ff;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.contact-note p {
    color: #34495e;
    line-height: 1.6;
}

.contact-note a {
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

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

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

.location-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.location-section p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.location-info {
    margin-top: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
}

.location-info p {
    margin-bottom: 12px;
    font-weight: 600;
    color: #34495e;
}

.location-info ul {
    list-style: none;
    padding-left: 0;
}

.location-info ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
}

.location-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a5568;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #2c5f2d;
    font-size: 1.05rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

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

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 14px;
    color: #4a5568;
    line-height: 1.6;
}

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

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

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

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

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

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-controls {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-status {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

    .hero-right {
        min-height: 300px;
    }

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

    .split-content {
        padding: 40px 25px;
    }

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

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

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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

    .service-detail-image {
        min-height: 250px;
    }

    .contact-split {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}