* {
    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-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #8b2f7e;
    text-decoration: none;
}

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

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

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

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

.article-hero {
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8d5e5;
    overflow: hidden;
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

.intro-section,
.story-section,
.insight-section,
.solution-section,
.trust-section,
.cta-section {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

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

.article-body h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

.article-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8d5e5;
}

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

.insight-block {
    background-color: #f5f0f4;
    border-left: 4px solid #8b2f7e;
    padding: 25px;
    margin: 30px 0;
}

.insight-block p {
    margin-bottom: 0;
    font-size: 19px;
    color: #444;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 19px;
    color: #555;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #888;
}

.services-reveal {
    margin-top: 60px;
}

.service-card {
    margin-bottom: 50px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #e8d5e5;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #8b2f7e;
}

.service-card p {
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    margin-top: 20px;
}

.embedded-form {
    margin-top: 40px;
    padding: 40px;
    background-color: #fff;
    border: 2px solid #8b2f7e;
}

.embedded-form h3 {
    margin-bottom: 25px;
    color: #8b2f7e;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b2f7e;
    background-color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #8b2f7e;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

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

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #8b2f7e;
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #333;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b2f7e;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-btn.reject:hover {
    background-color: #ccc;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.contact-info {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #8b2f7e;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

.services-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.service-item img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    background-color: #e8d5e5;
    flex-shrink: 0;
}

.service-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #8b2f7e;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.service-info .price {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

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

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

.about-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.about-image {
    margin: 40px 0;
    background-color: #e8d5e5;
}

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

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #8b2f7e;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #8b2f7e;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-page .back-link:hover {
    background-color: #6e2464;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
    }

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

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