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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e6f5d;
    --accent-color: #c89f7e;
    --text-color: #333;
    --light-bg: #f8f7f5;
    --white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #5a7a5c;
}

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

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

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

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

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

p {
    margin-bottom: 1.5rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-container {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-hero {
    padding: 4rem 0 3rem;
    max-width: 680px;
    margin: 0 auto;
}

.hero-text {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 0 auto;
    background-color: var(--light-bg);
    background-image: linear-gradient(135deg, #c89f7e 0%, #8e6f5d 100%);
}

.story-section {
    padding: 4rem 0;
}

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

.inline-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 2.5rem 0;
    background-color: var(--light-bg);
    background-image: linear-gradient(120deg, #8e6f5d 0%, #c89f7e 100%);
}

.inline-cta {
    display: inline-block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    margin: 1rem 0 2rem;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.insight-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 3rem 0;
}

.insight-text {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.insight-author {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.story-list {
    list-style: none;
    margin: 2rem 0;
}

.story-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.story-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.testimonial-block {
    margin: 3rem 0;
    padding: 0 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.service-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin: 2.5rem 0;
    background-color: var(--white);
    position: relative;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-duration {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-price {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    background-color: var(--light-bg);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-service {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background-color: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.story-form {
    background-color: var(--light-bg);
    padding: 2.5rem;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.submit-button {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.urgency-box {
    background-color: #fff9f0;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
}

.urgency-box p {
    margin-bottom: 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.page-hero {
    padding: 3rem 0 2rem;
    background-color: var(--light-bg);
}

.service-detail {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail h3 {
    margin-top: 0;
}

.featured-service {
    position: relative;
}

.philosophy-card {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.philosophy-card h3 {
    margin-top: 0;
}

.team-member {
    margin: 3rem 0;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: var(--light-bg);
    background-image: linear-gradient(135deg, #c89f7e 0%, #8e6f5d 100%);
}

.team-role {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-grid {
    margin: 2rem 0;
}

.contact-info-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
}

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

.contact-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.faq-item {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.thanks-section h1 {
    text-align: center;
}

.thanks-details {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

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

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

.thanks-cta {
    margin: 3rem 0;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-info {
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #666;
}

.legal-content {
    font-size: 1rem;
}

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

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-button {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.2rem;
        font-size: 0.85rem;
    }

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

    .lead {
        font-size: 1.1rem;
    }

    .story-section {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .story-form {
        padding: 1.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

@media (max-width: 480px) {
    .narrow-content {
        padding: 0 1rem;
    }

    .hero-text {
        padding: 0 1rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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