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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
}

.editorial-content {
    background: #ffffff;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    background-color: #c4c4c4;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead {
    font-size: 21px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    margin-top: 48px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 400;
    color: #2a2a2a;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 24px;
}

.content-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

.reference {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.reference:hover {
    color: #004499;
}

.bg-light {
    background: #f7f7f5;
}

.testimonial {
    border-left: 4px solid #d4a574;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 20px;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ddd;
}

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

.service-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #2a5f3f;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background: #2a5f3f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background: #1e4530;
}

.cta-section {
    padding: 80px 0;
    background: #2a5f3f;
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
    margin-top: 0;
}

.cta-section p {
    color: #e8e8e8;
}

.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: 'Arial', sans-serif;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.selected-service-display {
    background: #f0f0f0;
    padding: 16px;
    border-left: 4px solid #2a5f3f;
    font-size: 16px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background: #000000;
}

.disclaimer {
    font-size: 15px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.references-section {
    padding: 60px 0;
    background: #f0f0ed;
}

.references-list {
    margin-left: 20px;
}

.references-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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: 15px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept:hover {
    background: #1e4530;
}

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

.btn-reject:hover {
    background: #555;
}

.page-hero {
    padding: 80px 0 40px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 40px 0;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e5e5e5;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 400;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
}

.note {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-info {
    margin: 50px 0;
    text-align: left;
}

.thanks-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 400;
}

.next-steps ol {
    margin-left: 30px;
}

.next-steps li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-back {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: #2a5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-back:hover {
    background: #1e4530;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.last-updated {
    font-size: 16px;
    color: #666;
}

@media screen and (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 16px;
    }

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

    .lead {
        font-size: 19px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section p {
        font-size: 17px;
    }

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

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

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

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