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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d7a4f;
    --accent-color: #f4a261;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.hamburger:hover span {
    background-color: var(--secondary-color);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: flex;
    opacity: 1;
}

.nav-content {
    background-color: var(--bg-white);
    width: 85%;
    max-width: 400px;
    height: 100vh;
    padding: 24px;
    position: relative;
}

.nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 40px;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.nav-close:hover {
    color: var(--secondary-color);
}

.nav-content ul {
    list-style: none;
    margin-top: 60px;
}

.nav-content ul li {
    margin-bottom: 24px;
}

.nav-content ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-content ul li a:hover {
    color: var(--secondary-color);
}

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-dark);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 24px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #e8944d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-section {
    background-color: var(--bg-light);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.problem-section {
    background-color: var(--bg-white);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image {
    background-color: var(--bg-light);
}

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

.insight-section {
    background-color: var(--bg-light);
}

.insight-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.insight-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview-section {
    background-color: var(--bg-white);
}

.services-preview-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
    text-align: center;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 24px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.trust-section {
    background-color: var(--bg-light);
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.trust-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.testimonial-section {
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.cta-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bg-light);
}

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

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

.footer-section ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.email-display {
    color: var(--bg-light);
    cursor: default;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-references p {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--bg-light);
}

.footer-references a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept:hover {
    background-color: #e8944d;
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    padding: 12px 24px;
    border: 2px solid var(--bg-white);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.cookie-learn {
    color: var(--accent-color);
    padding: 12px 24px;
    text-decoration: underline;
    font-size: 15px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.page-header p {
    font-size: 20px;
    line-height: 1.6;
}

.content-section {
    background-color: var(--bg-white);
}

.values-section {
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.experience-section {
    background-color: var(--bg-white);
}

.experience-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.experience-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.methodology-section {
    background-color: var(--bg-light);
}

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-step {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.method-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.method-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-section {
    background-color: var(--bg-white);
}

.commitment-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.commitment-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-detail-section {
    background-color: var(--bg-white);
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 20px 0 24px 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-image {
    background-color: var(--bg-light);
}

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

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px 0;
}

.contact-info-section {
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image {
    background-color: var(--bg-light);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-areas-section {
    background-color: var(--bg-light);
}

.service-areas-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-areas-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.inquiry-types-section {
    background-color: var(--bg-white);
}

.inquiry-types-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.inquiry-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inquiry-item {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.inquiry-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.inquiry-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps-section {
    background-color: var(--bg-light);
}

.next-steps-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.next-steps-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-section {
    background-color: var(--bg-white);
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid var(--accent-color);
}

.confirmation-details p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.next-steps-list {
    margin: 20px 0 20px 24px;
}

.next-steps-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.legal-page {
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 16px);
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        width: calc(50% - 16px);
    }

    .cta-buttons {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-section {
        width: calc(50% - 16px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .service-detail {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-detail:nth-child(even) {
        flex-direction: row-reverse;
    }

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

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

    .contact-details,
    .contact-image {
        flex: 1;
    }

    .inquiry-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .inquiry-item {
        width: calc(50% - 12px);
    }

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

@media (min-width: 1024px) {
    .service-card {
        width: calc(33.333% - 22px);
    }

    .testimonial {
        width: calc(33.333% - 22px);
    }

    .footer-section {
        width: calc(25% - 24px);
    }

    .inquiry-item {
        width: calc(33.333% - 16px);
    }
}
