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

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

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

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

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.hero-editorial {
    margin-bottom: 64px;
    text-align: center;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 32px;
    background-color: #e8e4ed;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.hero-lead {
    font-size: 19px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

.content-flow {
    margin-bottom: 56px;
}

.content-flow h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.4;
}

.content-flow h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    font-weight: 400;
    color: #2c2c2c;
}

.content-flow p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #3c3c3c;
}

.inline-image {
    margin: 40px 0;
    background-color: #e8e4ed;
    border-radius: 4px;
    overflow: hidden;
}

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

.services-inline {
    margin-bottom: 56px;
}

.services-inline h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 400;
    text-align: center;
}

.service-card-editorial {
    padding: 32px 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-card-editorial:last-of-type {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

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

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

.cta-inline {
    background-color: #8b7ba8;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cta-inline:hover {
    background-color: #755d8f;
}

blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background-color: #f7f5f9;
    border-left: 4px solid #8b7ba8;
}

blockquote p {
    font-size: 17px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 12px;
}

blockquote footer {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.form-section-editorial {
    margin: 64px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.form-section-editorial > p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #555;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: inherit;
    background-color: #fff;
}

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

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

.submit-btn {
    background-color: #8b7ba8;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

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

.disclaimer-section {
    margin: 48px 0;
    padding: 24px;
    background-color: #fff9e6;
    border-left: 3px solid #f0c14b;
}

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

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 48px 24px 24px;
    margin-top: 80px;
}

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

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

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

.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: 8px;
}

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

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

.footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

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

.cookie-banner a {
    color: #8b7ba8;
}

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

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

.cookie-accept {
    background-color: #8b7ba8;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #755d8f;
}

.cookie-reject {
    background-color: #555;
    color: #fff;
}

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

.page-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px;
}

.page-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 400;
}

.page-container h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 500;
}

.page-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3c3c3c;
}

.page-container ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.page-container ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.thanks-container {
    max-width: 720px;
    margin: 80px auto;
    padding: 48px 24px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #8b7ba8;
    font-weight: 400;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 28px;
    background-color: #8b7ba8;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #755d8f;
}

.contact-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-item {
    padding: 24px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b7ba8;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

    .nav-links {
        gap: 16px;
    }

    .editorial-container {
        padding: 32px 16px;
    }

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

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

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