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

:root {
    --primary-color: #2c5f7f;
    --primary-dark: #1a3f5c;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d7a4f;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.cookie-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-minimal {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-section);
}

.article-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #1a3f5c;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
}

.hero-text-overlay h1 {
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-text-overlay .lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
}

.article-body {
    padding: 4rem 2rem;
}

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

.opening {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.article-body h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.article-body h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.signal-list,
.technique-list {
    list-style: none;
    padding-left: 0;
}

.signal-list li,
.technique-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.signal-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.technique-list {
    counter-reset: item;
    list-style-type: none;
}

.technique-list li {
    counter-increment: item;
    padding-left: 2rem;
}

.technique-list li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: var(--bg-light);
}

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

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.cta-inline {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.cta-inline h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border: none;
    margin: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background-color: #f0f7fb;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.what-included {
    margin: 1.5rem 0;
}

.what-included h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.what-included ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.what-included li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.what-included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service:hover {
    background-color: var(--primary-dark);
}

.form-section {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

#selectedServiceText {
    background-color: white;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.disclaimer {
    margin: 4rem 0 2rem;
    padding: 1.5rem;
    background-color: #fffbf0;
    border: 1px solid #e8d9a8;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.contact-info-section {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: white;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.email-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.thank-you-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

.next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.next-steps h2 {
    margin-top: 0;
}

.next-steps ol {
    margin-top: 1.5rem;
}

.while-waiting {
    text-align: left;
    margin: 2rem 0;
}

.email-check {
    background-color: #fffbf0;
    padding: 1.5rem;
    border: 1px solid #e8d9a8;
    border-radius: 4px;
    margin-top: 2rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 3rem 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-text-overlay .lead {
        font-size: 1rem;
    }

    .article-body {
        padding: 2rem 1.5rem;
    }

    .article-body h1 {
        font-size: 2rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        font-size: 0.9rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
