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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

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

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

.nav-main a:hover {
    color: #8b4513;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #8b4513;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.editorial-content {
    background-color: #fefefe;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #2c2c2c;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: normal;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.intro-section {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
    font-style: italic;
}

.content-narrow p {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.story-section {
    margin: 80px 0;
}

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

.quote-block {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid #8b4513;
    background-color: #f9f9f9;
}

.quote-block blockquote p {
    font-size: 22px;
    font-style: italic;
    color: #4a4a4a;
}

.insight-section {
    margin: 80px 0;
}

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

.phase-list {
    margin-top: 40px;
}

.phase-item {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.phase-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b4513;
    font-weight: normal;
}

.phase-item p {
    font-size: 17px;
}

.cta-inline {
    margin: 60px 0;
}

.cta-box {
    background-color: #8b4513;
    color: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: normal;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #f5f5f5;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #8b4513;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.evidence-section {
    margin: 80px 0;
}

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

.evidence-section a {
    color: #8b4513;
    text-decoration: underline;
}

.services-section {
    margin: 80px 0;
    padding-top: 60px;
    border-top: 2px solid #e5e5e5;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
    color: #1a1a1a;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f5f5f5;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #4a4a4a;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #8b4513;
    margin: 20px 25px;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.selected-service-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: normal;
    color: #2e7d32;
}

.selected-service-box p {
    font-size: 16px;
    margin: 5px 0;
    color: #1b5e20;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #1a1a1a;
}

.contact-form > p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #4a4a4a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    margin: 80px 0;
    padding: 60px 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.testimonials-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
    color: #1a1a1a;
}

.testimonial-item {
    margin-bottom: 40px;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item p {
    font-size: 20px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.testimonial-item cite {
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff9e6;
    border-left: 4px solid #ffa000;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #e65100;
}

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

.references-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
}

.references-list li {
    margin-bottom: 10px;
}

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

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

.footer-main {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: normal;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .content-narrow {
        padding: 30px 15px;
    }

    .lead-text {
        font-size: 20px;
    }

    .story-section h2,
    .insight-section h2,
    .evidence-section h2 {
        font-size: 26px;
    }

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

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

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

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
    color: #2c2c2c;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: normal;
    color: #3a3a3a;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 40px;
    font-size: 17px;
    line-height: 1.8;
}

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

.contact-info-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin: 40px 0;
}

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

.contact-info-block p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container .highlight-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #4caf50;
}

.thanks-container .highlight-box p {
    margin: 0;
    color: #1b5e20;
    font-size: 18px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #6d3510;
}