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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.main-nav {
    background-color: var(--bg-white);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--secondary-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-full {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--bg-white);
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    line-height: 1.6;
}

.intro-narrow {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.story-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.insight-block {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.insight-block h2 {
    color: var(--bg-white);
}

.visual-break {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.split-visual {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.visual-text {
    flex: 1;
}

.visual-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.approach-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-medium);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.method-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.content-wrapper-alt {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.method-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.method-text {
    flex: 1;
}

.trust-block {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.trust-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.benefits-list {
    list-style-position: inside;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: var(--border-color);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
}

.service-includes {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.service-price {
    padding: 0.5rem 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-button {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, serif;
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-note {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.references-list a {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999999;
}

.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--bg-white);
}

.hero-content h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.about-image {
    width: 100%;
    margin: 2rem 0 3rem;
    background-color: var(--border-color);
}

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

.services-detail {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: var(--bg-light);
}

.service-detail-card.featured-service {
    border: 2px solid var(--accent-color);
    position: relative;
}

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.price-highlight {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-faq {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.faq-item {
    margin-bottom: 2rem;
}

.contact-content {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.contact-note {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.contact-note ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.contact-note ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-content {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: left;
}

.thanks-details ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.thanks-details ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: left;
    padding: 2rem;
    background-color: var(--bg-light);
}

.next-steps ol {
    margin: 1rem 0 0 1.5rem;
}

.next-steps ol li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.legal-content {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-wrapper,
    .split-visual,
    .content-wrapper-alt,
    .service-detail-card {
        flex-direction: column;
    }

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

    .service-card.featured {
        transform: none;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}