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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #F4A460;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --accent-color: #8B4513;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
}

.hero-section {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image-container {
    flex: 1;
    max-width: 600px;
}

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

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.intro-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.intro-card {
    flex: 1;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cta-centered {
    text-align: center;
    margin-top: 50px;
}

.cta-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.cta-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.consultation-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-color), #1E4A2F);
}

.consultation-content {
    text-align: center;
    margin-bottom: 40px;
    color: var(--bg-white);
}

.consultation-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.consultation-content p {
    font-size: 18px;
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-white);
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--accent-color);
}

.approach-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-cards {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-card {
    flex: 1;
    padding: 35px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.step-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.approach-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.site-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    max-width: 900px;
    margin: 10px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    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: 30px;
}

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

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

.cookie-button {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-button.accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cookie-button.accept:hover {
    background: #234A31;
}

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

.cookie-button.reject:hover {
    background: var(--border-color);
}

.page-hero {
    padding: 100px 40px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-light);
}

.story-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

.story-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    max-width: 500px;
}

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

.values-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

.expertise-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.expertise-image {
    flex: 1;
    max-width: 500px;
}

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

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.expertise-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-detail-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.approach-detail-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.approach-detail-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.approach-detail-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-detail-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color), #1E4A2F);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.services-detail-section {
    padding: 60px 40px;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.select-service-detail {
    padding: 14px 30px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.process-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-timeline {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.consultation-form-section {
    padding: 80px 40px;
    background: var(--bg-white);
    text-align: center;
}

.consultation-form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.consultation-form-section > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main-section {
    padding: 60px 40px;
    background: var(--bg-white);
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-detail {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-approach-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.contact-approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-approach-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.location-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

.location-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.location-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-image {
    flex: 1;
    max-width: 500px;
}

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

.faq-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-confirmation {
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 30px;
}

.step-item {
    flex: 1;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.while-you-wait {
    max-width: 900px;
    margin: 0 auto;
}

.while-you-wait h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.wait-links {
    display: flex;
    gap: 30px;
}

.wait-link {
    flex: 1;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wait-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.wait-link h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.wait-link p {
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    padding: 60px 40px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.updated-date {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-section,
    .story-grid,
    .expertise-content,
    .location-content,
    .service-detail-card {
        flex-direction: column;
    }

    .approach-cards,
    .process-timeline {
        flex-wrap: wrap;
    }

    .services-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .intro-grid,
    .footer-content,
    .contact-info-grid,
    .steps-grid,
    .wait-links {
        flex-direction: column;
    }

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