* {
    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-notice {
    background-color: #f4f1ed;
    color: #6b6b6b;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #e0ddd8;
}

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

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

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

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

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.editorial-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.hero-text-centered {
    text-align: center;
    max-width: 780px;
    padding: 60px 30px 50px;
}

.hero-text-centered h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
}

.editorial-hero img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    background-color: #e8e5e0;
}

.editorial-story {
    background-color: #ffffff;
    padding: 60px 20px;
}

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

.story-narrow h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-narrow h2 {
    font-size: 28px;
    line-height: 1.4;
    color: #2a2a2a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
}

.story-narrow h3 {
    font-size: 22px;
    line-height: 1.4;
    color: #2a2a2a;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 400;
}

.story-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.inline-image-container {
    margin: 45px 0;
}

.inline-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e5e0;
}

.image-caption {
    font-size: 15px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.story-highlight {
    background-color: #f9f7f4;
    border-left: 4px solid #c17a5c;
    padding: 30px 35px;
    margin: 40px 0;
}

.story-highlight p {
    font-size: 20px;
    line-height: 1.6;
    color: #2a2a2a;
    font-style: italic;
    margin-bottom: 15px;
}

.highlight-author {
    display: block;
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
    margin-top: 10px;
}

.service-story-card {
    border-top: 2px solid #e8e8e8;
    padding: 40px 0;
    margin-top: 40px;
}

.service-story-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-story-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-detail {
    font-size: 15px;
    color: #7a7a7a;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.price-inline {
    font-size: 26px;
    color: #c17a5c;
    font-weight: bold;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.cta-text {
    color: #c17a5c;
    text-decoration: underline;
    font-size: 17px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.cta-text:hover {
    color: #a05a3c;
}

.form-section-editorial {
    margin-top: 60px;
    padding: 50px 40px;
    background-color: #f9f7f4;
    border-radius: 2px;
}

.form-section-editorial h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    font-size: 17px;
    background-color: #c17a5c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-editorial {
    margin-top: 50px;
    padding: 30px;
    background-color: #f4f1ed;
    border-left: 3px solid #b8a494;
}

.disclaimer-editorial p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
}

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

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

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

.footer-block h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #909090;
    font-family: Arial, sans-serif;
}

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

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
    font-family: Arial, sans-serif;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #555555;
    color: #ffffff;
}

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

.service-detail-block {
    margin-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.service-detail-block h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail-block img {
    width: 100%;
    height: auto;
    margin: 25px 0;
    object-fit: cover;
    background-color: #e8e5e0;
}

.service-info {
    background-color: #f9f7f4;
    padding: 25px 30px;
    margin: 30px 0;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.price-display {
    font-size: 28px;
    color: #c17a5c;
    font-weight: bold;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #c17a5c;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

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

.info-note {
    margin-top: 60px;
    padding: 35px;
    background-color: #f4f1ed;
}

.info-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-block {
    margin-top: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-note {
    font-size: 15px;
    color: #7a7a7a;
    margin-top: 15px;
    font-style: italic;
}

.cta-contact-block {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f7f4;
    text-align: center;
}

.cta-contact-block p {
    font-size: 19px;
}

.thanks-container {
    padding: 60px 30px;
}

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

.thanks-content h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-info-block {
    background-color: #f9f7f4;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-info-block ul {
    list-style-position: inside;
    font-size: 17px;
    line-height: 2;
    color: #4a4a4a;
}

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

.thanks-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e8e8e8;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.legal-content a {
    color: #c17a5c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #a05a3c;
}

@media (max-width: 768px) {
    .hero-text-centered h1 {
        font-size: 32px;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .story-narrow {
        padding: 0 20px;
    }
}