* {
    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: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.hero-image {
    margin: 50px 0;
    width: 100%;
    background-color: #e8e8e8;
}

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

.intro-text {
    margin: 40px 0;
}

.intro-text p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.inline-image-block {
    margin: 60px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.problem-section {
    margin: 60px 0;
}

.problem-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.problem-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.editorial-list {
    margin: 30px 0;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.9;
}

.editorial-list li {
    margin-bottom: 12px;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f7f4;
    border-left: 4px solid #c17a42;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #333;
}

.testimonial-inline footer {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.services-intro {
    margin: 60px 0;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.services-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-cards {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 25px 15px 25px;
    line-height: 1.7;
    color: #555;
}

.service-card .price {
    font-size: 22px;
    font-weight: 600;
    color: #c17a42;
    margin: 20px 25px;
}

.service-card button {
    margin: 0 25px 25px 25px;
    padding: 14px 28px;
    background-color: #c17a42;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.service-card button:hover {
    background-color: #a66535;
}

.insights-section {
    margin: 60px 0;
}

.insights-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.insights-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.insight-box {
    margin: 30px 0;
    padding: 30px;
    background-color: #fff;
    border-left: 3px solid #c17a42;
}

.insight-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.cta-inline-block {
    margin: 60px 0;
    padding: 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
}

.cta-inline-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-inline-block p {
    font-size: 18px;
    line-height: 1.7;
}

.form-container {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666;
}

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

.selected-service-display {
    padding: 15px;
    background-color: #f9f7f4;
    border-left: 4px solid #c17a42;
    margin-bottom: 10px;
    font-size: 16px;
}

.editorial-form label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: inherit;
    background-color: #fafafa;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
    outline: none;
    border-color: #c17a42;
    background-color: #fff;
}

.editorial-form button {
    padding: 16px;
    background-color: #c17a42;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.editorial-form button:hover {
    background-color: #a66535;
}

.research-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f5f5f5;
}

.research-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.research-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.research-section a {
    color: #c17a42;
    text-decoration: none;
    font-weight: 600;
}

.research-section a:hover {
    text-decoration: underline;
}

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

.disclaimer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.references-footer {
    margin: 60px 0 40px 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.references-footer h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.references-footer ol {
    padding-left: 25px;
}

.references-footer li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.references-footer a {
    color: #c17a42;
    text-decoration: none;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: #c17a42;
}

.footer-text {
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

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

.cookie-banner p {
    font-size: 15px;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
    font-family: inherit;
}

#cookie-accept {
    background-color: #c17a42;
    color: #fff;
}

#cookie-accept:hover {
    background-color: #a66535;
}

#cookie-reject {
    background-color: #444;
    color: #fff;
}

#cookie-reject:hover {
    background-color: #555;
}

.thanks-message {
    max-width: 720px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.thanks-message a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #c17a42;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-message a:hover {
    background-color: #a66535;
}

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

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

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

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

.page-content a {
    color: #c17a42;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.contact-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f7f4;
    border-left: 4px solid #c17a42;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #444;
}

.contact-info .email-display {
    font-weight: 600;
    color: #c17a42;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

    .editorial-content {
        padding: 0 20px;
        margin: 40px auto;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}