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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2C2C2C;
    background-color: #FAFAF8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8B7355;
    color: #FFFFFF;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2C2C2C;
}

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C2C2C;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #2C2C2C;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #8B7355;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

.hero-full {
    margin-top: 70px;
}

.hero-image {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: #FFFFFF;
    background-color: rgba(0,0,0,0.35);
    padding: 3rem 2rem;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

.story-intro {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

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

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.insight-block {
    padding: 4rem 0;
    background-color: #F5F3F0;
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

@media (max-width: 968px) {
    .split-layout {
        flex-direction: column;
    }
    .split-layout.reverse {
        flex-direction: column;
    }
    .split-content {
        padding: 2rem;
    }
}

.storytelling {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.storytelling h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #F9F8F6;
}

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

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: normal;
}

.testimonial-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #FFFFFF;
    padding: 2rem;
    border-left: 4px solid #8B7355;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #4A4A4A;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
}

.benefits-reveal {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #E5E5E5;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

.offering-section {
    padding: 6rem 2rem;
    background-color: #F5F3F0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4A4A4A;
}

.service-reveal-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
    font-weight: normal;
}

.service-card p {
    margin-bottom: 1rem;
    color: #4A4A4A;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #8B7355;
    margin: 1.5rem 0;
}

.select-service {
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.main-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2C2C2C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #D5D5D5;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

.submit-btn {
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4A4A4A;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #F9F8F6;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.site-footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: normal;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #D5D5D5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A4A4A;
    color: #999;
}

.page-header {
    background-color: #8B7355;
    color: #FFFFFF;
    padding: 6rem 2rem 3rem;
    margin-top: 70px;
}

.page-header h1 {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 3rem;
    font-weight: normal;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    font-weight: normal;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: normal;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content ul li {
    margin-bottom: 0.7rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-section {
    flex: 1;
    min-width: 280px;
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B7355;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #F9F8F6;
    padding: 2rem;
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.service-item .price {
    font-size: 1.4rem;
    color: #8B7355;
    font-weight: bold;
    margin: 1rem 0;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #8B7355;
    font-weight: normal;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thanks-container .selected-service-display {
    background-color: #F5F3F0;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.home-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #8B7355;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-link:hover {
    background-color: #A0826D;
}