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

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

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

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
}

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

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

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

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

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

.hero-image-wrap {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

.editorial-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.editorial-intro p,
.problem-section p,
.insight-section p,
.story-section p,
.benefits-section p,
.trust-section p,
.offer-reveal p {
    margin-bottom: 20px;
}

.problem-section,
.insight-section,
.story-section,
.benefits-section,
.trust-section,
.offer-reveal,
.form-section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.inline-image-right,
.inline-image-left {
    margin: 30px 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

@media (min-width: 768px) {
    .inline-image-right {
        float: right;
        width: 45%;
        margin: 10px 0 30px 30px;
    }

    .inline-image-left {
        float: left;
        width: 45%;
        margin: 10px 30px 30px 0;
    }
}

.insight-card {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #8b6914;
}

.testimonial {
    font-size: 1.15rem;
    font-style: italic;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #8b6914;
    margin: 30px 0;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b6914;
    font-weight: bold;
}

.benefits-list strong {
    color: #1a1a1a;
}

.service-selection-form {
    margin: 40px 0;
}

.service-option {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    cursor: pointer;
}

.service-option:hover {
    border-color: #8b6914;
}

.service-option.selected {
    border-color: #8b6914;
    background-color: #fffef8;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b6914;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #8b6914;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.select-service-btn:hover {
    background-color: #6d5210;
}

.editorial-form {
    background-color: #f9f9f9;
    padding: 40px;
    margin-top: 30px;
}

.selected-service-display {
    background-color: #fffef8;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #8b6914;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 1rem;
}

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

.submit-btn {
    background-color: #8b6914;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

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

.disclaimer-section {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.references-section {
    margin: 40px 0;
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.references-list {
    list-style: decimal;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.references-list a {
    color: #8b6914;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #8b6914;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

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

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

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

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

.contact-page-container,
.about-page-container,
.services-page-container,
.legal-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-info-item p {
    color: #555;
    line-height: 1.6;
}

.about-content,
.services-grid,
.legal-content {
    margin-top: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border: 2px solid #e0e0e0;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b6914;
    display: block;
    margin-top: 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.thanks-container {
    max-width: 720px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #fff;
    border: 2px solid #8b6914;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-service-info {
    background-color: #fffef8;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #8b6914;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #8b6914;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #6d5210;
    text-decoration: underline;
}