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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-hero {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background-color: #d4c5b0;
}

.editorial-hero 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.1), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3.2rem;
    max-width: 720px;
    text-align: center;
    padding: 0 24px;
    line-height: 1.3;
    font-weight: 400;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 24px;
}

.intro-text {
    margin-bottom: 80px;
}

.lead {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    object-fit: cover;
}

.services-embed {
    margin: 80px 0;
}

.services-embed h2 {
    font-size: 2.4rem;
    margin-bottom: 48px;
    font-weight: 400;
    text-align: center;
}

.service-inline {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.service-inline.reverse {
    flex-direction: row-reverse;
}

.service-inline img {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.service-text {
    flex: 1;
    min-width: 280px;
}

.service-text h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-text p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    background-color: #f0e8d8;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1.05rem;
}

.cta-inline {
    text-align: center;
    margin: 64px 0;
    padding: 48px 24px;
    background-color: #f8f5f0;
    border-radius: 4px;
}

.cta-inline p {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.cta-button {
    background-color: #3a3a3a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.philosophy-text {
    margin: 80px 0;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    font-weight: 400;
}

.form-section {
    margin: 80px 0;
    padding: 48px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    font-weight: 400;
}

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

.inquiry-form label {
    font-weight: 500;
    color: #2a2a2a;
    font-size: 0.95rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #3a3a3a;
}

.submit-button {
    background-color: #3a3a3a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

.disclaimer {
    margin: 64px 0;
    padding: 24px;
    background-color: #f9f6f2;
    border-left: 4px solid #d4c5b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 64px 48px 32px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3a3a3a;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: #3a3a3a;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #e8e8e8;
    color: #2a2a2a;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

.thanks-page {
    max-width: 680px;
    margin: 80px auto;
    padding: 64px 24px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-page p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-page,
.services-page,
.contact-page,
.legal-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 64px 24px;
}

.about-page h1,
.services-page h1,
.contact-page h1,
.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-page h2,
.services-page h2,
.contact-page h2,
.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-page p,
.services-page p,
.contact-page p,
.legal-page p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.service-card {
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-card p {
    margin-bottom: 16px;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3a3a3a;
    display: block;
    margin-top: 16px;
}

.contact-info {
    margin-top: 48px;
    padding: 32px;
    background-color: #f8f5f0;
    border-radius: 4px;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-info p {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .editorial-content {
        padding: 40px 20px;
    }

    .service-inline {
        flex-direction: column;
        gap: 24px;
    }

    .service-inline.reverse {
        flex-direction: column;
    }

    .service-inline img {
        max-width: 100%;
    }

    .form-section {
        padding: 32px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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