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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
}

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

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 60px 40px 40px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-style: italic;
}

.article-body {
    padding: 40px;
}

.intro-section,
.story-section,
.insight-section,
.services-preview,
.testimonial-section,
.form-section,
.closing-section {
    margin-bottom: 80px;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: #1a1a1a;
}

.article-body p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: 40px;
    font-weight: normal;
    color: #1a1a1a;
}

.article-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2d2d2d;
}

.inline-image-wrapper {
    margin: 50px 0;
}

.inline-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 10px;
}

.inline-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.pullquote {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
}

.pullquote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: #1a1a1a;
    line-height: 1.6;
}

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

.insight-card {
    display: flex;
    flex-direction: column;
}

.insight-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

.service-highlight {
    background-color: #f8f8f8;
    padding: 40px;
    margin: 40px 0;
}

.service-features {
    list-style-position: inside;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #4a7ba7;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    text-align: right;
}

.main-form {
    background-color: #f8f8f8;
    padding: 40px;
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7ba7;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 50px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-submit:hover {
    background-color: #4a7ba7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 20px;
    background-color: #2a2a2a;
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a7ba7;
    color: #fff;
}

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

.btn-reject {
    background-color: #666;
    color: #fff;
}

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

.services-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 400px;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-price {
    font-size: 1.5rem;
    color: #4a7ba7;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7ba7;
    font-weight: bold;
}

.btn-select-service {
    align-self: flex-start;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-select-service:hover {
    background-color: #4a7ba7;
}

.about-page,
.contact-page,
.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
}

.about-page h1,
.contact-page h1,
.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-page h2,
.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-page p,
.contact-page p,
.legal-page p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 40px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-details {
    font-size: 1.05rem;
    line-height: 2;
}

.contact-details strong {
    display: inline-block;
    width: 150px;
}

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

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4a7ba7;
    font-weight: normal;
}

.thanks-page p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-page .btn-primary {
    margin-top: 20px;
}

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

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

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .article-body {
        padding: 20px;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .services-page,
    .about-page,
    .contact-page,
    .legal-page {
        padding: 20px;
    }
}