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

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

.ad-notice-top {
    background-color: #f0e6d2;
    color: #6b5d4f;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    border-bottom: 1px solid #d4c4a8;
}

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

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

.brand-mark {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    transition: color 0.2s;
}

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

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

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

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

.hero-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #5a5a5a;
    font-style: italic;
    margin-top: 20px;
}

.hero-figure {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 50px;
}

.hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

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

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

.article-content p {
    margin-bottom: 25px;
}

.section-heading {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.inline-figure {
    margin: 40px 0;
}

.inline-figure.inline-right {
    float: right;
    width: 48%;
    margin-left: 4%;
    margin-bottom: 20px;
}

.inline-figure.inline-left {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
}

.inline-figure img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

.service-block {
    background-color: #f9f7f4;
    border-left: 4px solid #c9a961;
    padding: 30px;
    margin: 45px 0;
    clear: both;
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.service-pricing {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 20px 0;
}

.service-cta {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.service-cta:hover {
    background-color: #1f3d29;
}

.contact-form-section {
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    padding: 40px;
    margin: 60px 0;
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-subtext {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #c0c0c0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background-color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.form-submit-btn {
    padding: 16px 40px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.disclaimer-box {
    background-color: #f5f5f5;
    border: 1px solid #d0d0d0;
    padding: 25px;
    margin-top: 60px;
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
}

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

.site-footer {
    background-color: #2a2a2a;
    color: #c0c0c0;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-heading {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

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

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

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-email {
    color: #a0a0a0;
    font-style: normal;
}

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

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

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

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

.cookie-consent-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1f3d29;
}

.cookie-reject {
    background-color: #5a5a5a;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #3a3a3a;
}

.about-page .article-content,
.services-page .article-content,
.contact-page .article-content {
    max-width: 100%;
}

.about-cta {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px;
    background-color: #f9f7f4;
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-detailed {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-figure {
    flex: 1;
    min-width: 300px;
}

.service-figure img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 15px;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.service-includes li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.services-closing {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f7f4;
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-email {
    color: #4a4a4a;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

.contact-note {
    background-color: #f9f7f4;
    padding: 25px;
    border-left: 4px solid #c9a961;
}

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

.contact-note a {
    color: #2d5a3d;
    font-weight: 600;
}

.thanks-content {
    text-align: center;
    padding: 80px 40px;
}

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

.thanks-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.service-confirmation {
    background-color: #f9f7f4;
    padding: 20px;
    margin: 30px 0;
    font-size: 17px;
    font-weight: 600;
    color: #2d5a3d;
}

.thanks-note {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.thanks-button {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-button:hover {
    background-color: #1f3d29;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

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

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .inline-figure.inline-right,
    .inline-figure.inline-left {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

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

    .service-detailed.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}