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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b6f47;
}

.hero-editorial {
    position: relative;
    height: 520px;
    overflow: hidden;
    background-color: #3d3d3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    padding: 180px 30px 0;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 19px;
    opacity: 0.95;
    font-style: italic;
}

.editorial-flow {
    background-color: #faf9f7;
}

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

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

.opening-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-section p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #3d3d3d;
}

.intro-section h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8e6e2;
}

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

.inline-image figcaption {
    padding: 14px 18px;
    font-size: 14px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.highlight-box {
    background-color: #f5f3ef;
    border-left: 4px solid #8b6f47;
    padding: 30px 35px;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 500;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.styled-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 600;
}

.services-embedded {
    margin: 90px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
    color: #1a1a1a;
}

.service-story {
    display: flex;
    gap: 40px;
    margin-bottom: 70px;
    align-items: flex-start;
}

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

.service-image-left,
.service-image-right {
    flex: 0 0 280px;
    background-color: #e8e6e2;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #3d3d3d;
}

.price-inline {
    font-size: 28px;
    font-weight: 600;
    color: #8b6f47;
    margin: 20px 0;
}

.cta-select {
    background-color: #8b6f47;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cta-select:hover {
    background-color: #6d5637;
}

.form-section {
    margin: 80px 0;
    padding: 50px 40px;
    background-color: #fff;
    border: 1px solid #e0ddd8;
}

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

.form-intro {
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    width: 100%;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section {
    margin: 80px 0;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.testimonial {
    background-color: #fff;
    padding: 35px 40px;
    margin-bottom: 30px;
    border-left: 3px solid #8b6f47;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f9f8f6;
    border: 1px solid #e0ddd8;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 30px 30px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-accept {
    background-color: #8b6f47;
    color: #fff;
}

.btn-accept:hover {
    background-color: #6d5637;
}

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

.btn-reject:hover {
    background-color: #333;
}

.contact-info-block {
    margin: 50px 0;
}

.contact-info-block h2 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.8;
    color: #3d3d3d;
    margin-bottom: 12px;
}

.note-text {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

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

.thanks-section h1 {
    margin-bottom: 40px;
}

.thanks-section .opening-text {
    text-align: left;
}

.thanks-section h2,
.thanks-section h3 {
    text-align: left;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.next-steps a {
    color: #8b6f47;
    text-decoration: none;
    border-bottom: 1px solid #8b6f47;
    transition: color 0.3s ease;
}

.next-steps a:hover {
    color: #6d5637;
}

.cta-box {
    margin: 50px 0;
    text-align: center;
}

.cta-box .btn-submit {
    display: inline-block;
    width: auto;
    text-decoration: none;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #3d3d3d;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #3d3d3d;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .service-story,
    .service-story.reverse {
        flex-direction: column;
    }

    .service-image-left,
    .service-image-right {
        flex: 1 1 auto;
        width: 100%;
    }

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

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

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