* {
    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;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding: 8px 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

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

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

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

.author-info {
    color: #888;
    font-size: 14px;
}

.publish-date {
    font-style: italic;
}

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

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

.article-body {
    font-size: 19px;
    line-height: 1.8;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 35px;
    font-weight: 400;
}

.article-body p {
    margin-bottom: 28px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 55px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.article-body ul {
    margin: 25px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 12px;
}

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

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

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.link-cta {
    display: inline-block;
    color: #1a5f7a;
    font-size: 19px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #0d3b4f;
}

.testimonial-box {
    margin: 50px 0;
    padding: 35px;
    background-color: #f8f8f8;
    border-left: 4px solid #2c2c2c;
}

.testimonial-box blockquote {
    font-style: italic;
}

.testimonial-box p {
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-box cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #666;
    font-size: 16px;
    margin-top: 15px;
}

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

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-item h2,
.service-item h3 {
    margin-top: 30px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0;
}

.service-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f8f8;
}

.contact-form {
    max-width: 600px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 14px 36px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.final-cta {
    margin: 80px 0;
    padding: 50px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #ffffff;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #e5e5e5;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background-color: #e5e5e5;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.disclaimer-section strong {
    color: #2c2c2c;
}

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

.contact-detail {
    margin-bottom: 40px;
}

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

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.next-steps-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.next-step-link {
    display: block;
    padding: 18px 25px;
    background-color: #f8f8f8;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
    border: 1px solid #e5e5e5;
}

.next-step-link:hover {
    background-color: #e5e5e5;
}

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

.legal-page h2 {
    margin-top: 45px;
}

.legal-page h3 {
    margin-top: 30px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #b5b5b5;
}

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

.footer-section li {
    margin-bottom: 12px;
}

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 30px 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

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

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

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

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

    .ad-disclosure {
        font-size: 11px;
        padding: 6px 10px;
    }

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

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

    .intro-text {
        font-size: 19px;
    }

    .article-body h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

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