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

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

.ad-disclosure {
    background-color: #f8f4ed;
    color: #6b5d4f;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e8e1d5;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e1d5;
    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;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

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

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

.article-intro {
    font-size: 20px;
    color: #5a5a5a;
    font-style: italic;
    line-height: 1.6;
}

.article-body {
    font-size: 18px;
}

.hero-image-wrapper {
    margin: 0 -30px 50px;
    background-color: #e8e1d5;
}

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

.text-section {
    margin-bottom: 45px;
}

.text-section h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.text-section h3 {
    font-size: 24px;
    margin: 35px 0 18px;
    font-weight: 400;
    color: #2c2c2c;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.text-section p {
    margin-bottom: 22px;
}

.text-section a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #c4b5a3;
    transition: border-color 0.3s ease;
}

.text-section a:hover {
    border-bottom-color: #8b7355;
}

.benefit-list,
.legal-list {
    margin: 25px 0 25px 35px;
    list-style-type: disc;
}

.benefit-list li,
.legal-list li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.inline-image-section {
    margin: 50px 0;
    background-color: #f5f2ed;
    padding: 5px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 15px;
}

.image-caption {
    font-size: 15px;
    font-style: italic;
    color: #6b5d4f;
    text-align: center;
    padding: 0 20px 15px;
}

.pullquote {
    margin: 50px 0;
    padding: 35px 40px;
    border-left: 4px solid #8b7355;
    background-color: #f8f4ed;
}

.pullquote p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
}

.cta-inline,
.cta-final {
    margin: 60px 0;
    padding: 45px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.cta-inline h3,
.cta-final h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #ffffff;
}

.cta-inline p,
.cta-final p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #d4d4d4;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #8b7355;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: 2px solid #8b7355;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px 35px;
    background-color: #f8f4ed;
    border-left: 3px solid #c4b5a3;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b5d4f;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.references-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8e1d5;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.references-list {
    margin-left: 20px;
    font-size: 15px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #c4b5a3;
}

.references-list a:hover {
    border-bottom-color: #8b7355;
}

.services-grid {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 50px;
    background-color: #ffffff;
    border: 1px solid #e8e1d5;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    background-color: #e8e1d5;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.service-features {
    margin: 25px 0 25px 25px;
    list-style-type: disc;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 5px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin: 25px 0 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 300;
    color: #6b5d4f;
    cursor: pointer;
}

.modal-close:hover {
    color: #2c2c2c;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
}

.modal-subtitle {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a5a5a;
}

.modal-price {
    font-size: 18px;
    margin-bottom: 30px;
    color: #8b7355;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d4d4d4;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fdfcfa;
}

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

.form-group textarea {
    resize: vertical;
}

.contact-info-wrapper {
    margin: 50px 0;
}

.contact-section {
    margin-bottom: 45px;
}

.contact-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-detail {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #6b5d4f;
    font-style: italic;
    margin-top: 12px;
}

.faq-item {
    margin-bottom: 35px;
}

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

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.thanks-actions {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f4ed;
}

.contact-reminder p {
    font-size: 16px;
    margin: 0;
}

.legal-page .article-header {
    text-align: left;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d4d4d4;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #c4b5a3;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

    .article-body {
        font-size: 17px;
    }

    .text-section h2 {
        font-size: 26px;
    }

    .pullquote p {
        font-size: 20px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-image-wrapper {
        margin-left: -30px;
        margin-right: -30px;
    }
}