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

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

.ad-disclosure {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 100%;
    background: #ffffff;
}

.editorial-hero {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

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

.hero-title {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 42px;
    line-height: 1.3;
    text-align: center;
    font-weight: 400;
    color: #1a1a1a;
}

.story-section {
    margin-bottom: 80px;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto 50px;
    padding: 0 30px;
}

.story-lead {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-style: italic;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.story-narrow h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 500;
    color: #1a1a1a;
}

.inline-image {
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
    height: 500px;
    overflow: hidden;
}

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

.insight-block {
    background: #f4ede4;
    padding: 70px 40px;
    margin: 80px 0;
}

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

.insight-content h2 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 500;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.testimonial-inline {
    max-width: 640px;
    margin: 60px auto;
    padding: 40px 50px;
    background: #f9f6f3;
    border-left: 4px solid #d4a574;
}

.testimonial-inline blockquote p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

.services-reveal {
    background: #ffffff;
    padding: 80px 40px;
    margin: 0 0 60px;
}

.services-intro {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 340px;
    background: #fafafa;
    padding: 35px 30px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.service-duration {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #333333;
}

.form-section {
    background: #f7f3ef;
    padding: 80px 40px;
    margin: 60px 0;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 500;
}

.form-intro {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.editorial-form {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2a2a2a;
}

.final-cta-section {
    padding: 90px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 500;
}

.final-cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta-secondary:hover {
    background: #f0f0f0;
}

.disclaimer-section {
    max-width: 780px;
    margin: 60px auto;
    padding: 30px 40px;
    background: #fff8f0;
    border-left: 3px solid #d4a574;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.editorial-footer {
    background: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #404040;
}

.footer-bottom p {
    font-size: 14px;
    color: #909090;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #e0e0e0;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

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

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

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

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

.service-card.selected {
    border: 2px solid #d4a574;
    background: #fff8f0;
}

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

    .hero-title {
        font-size: 32px;
    }

    .story-lead {
        font-size: 20px;
    }

    .story-narrow p {
        font-size: 16px;
    }

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

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