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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.editorial-hero {
    margin: 50px 0 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 480px;
    background-color: #d4b896;
    margin-bottom: 35px;
    border-radius: 3px;
    overflow: hidden;
}

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

.editorial-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.editorial-text {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
}

.lead-paragraph {
    font-size: 23px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 35px;
    font-weight: 400;
}

.editorial-text p {
    margin-bottom: 28px;
}

.editorial-text h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 55px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.inline-image {
    width: 100%;
    height: 420px;
    background-color: #c9b79c;
    margin: 45px 0;
    border-radius: 2px;
    overflow: hidden;
}

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

.editorial-quote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: #4a4a4a;
    padding: 35px 0;
    margin: 40px 0;
    border-left: 4px solid #8b4513;
    padding-left: 30px;
}

.service-inline-card {
    background-color: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    margin: 50px 0;
    border: 1px solid #ececec;
}

.service-inline-card img {
    width: 100%;
    height: 320px;
    display: block;
    background-color: #d9c7b0;
}

.service-inline-content {
    padding: 35px;
}

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

.service-inline-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    color: #8b4513;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.cta-inline {
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #6d3410;
}

.testimonial-inline {
    background-color: #f7f7f7;
    padding: 35px;
    margin: 40px 0;
    border-left: 3px solid #d4a574;
    border-radius: 2px;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

.editorial-form {
    background-color: #f9f9f9;
    padding: 45px;
    margin: 50px 0;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.cta-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-size: 17px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.cta-submit:hover {
    background-color: #2a2a2a;
}

.disclaimer-section {
    background-color: #fff9f0;
    padding: 30px;
    margin: 50px 0;
    border-radius: 3px;
    border: 1px solid #f0e5d8;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    font-family: 'Arial', sans-serif;
}

.footer {
    background-color: #2a2a2a;
    padding: 50px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: #999;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #8b4513;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #d0d0d0;
    border: 1px solid #666;
}

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

.about-hero,
.services-hero,
.contact-hero {
    text-align: center;
    padding: 80px 30px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content,
.contact-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.about-content p,
.contact-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.service-item {
    background-color: #fafafa;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #ececec;
}

.service-item h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 40px 0;
    border-radius: 4px;
}

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

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

.contact-detail strong {
    display: block;
    font-size: 15px;
    color: #2a2a2a;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.contact-detail span {
    font-size: 16px;
    color: #4a4a4a;
}

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

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

.legal-page h2 {
    font-size: 26px;
    color: #2a2a2a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    color: #3a3a3a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-service {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.thanks-service strong {
    font-size: 22px;
    color: #8b4513;
}

.thanks-cta {
    display: inline-block;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 3px;
    margin-top: 30px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.thanks-cta:hover {
    background-color: #6d3410;
}

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

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

    .editorial-hero h1 {
        font-size: 32px;
    }

    .editorial-text {
        font-size: 17px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

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

    .editorial-quote {
        font-size: 22px;
        padding-left: 20px;
    }

    .service-inline-content {
        padding: 25px;
    }

    .editorial-form {
        padding: 30px 25px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}