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

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

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.ad-notice p {
    font-size: 13px;
    color: #6c757d;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid #34495e;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

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

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

.hero-text-narrow {
    margin-bottom: 50px;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: normal;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8f4f8;
}

.story-section {
    margin-bottom: 80px;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto 60px;
}

.text-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: normal;
}

.text-narrow h3 {
    font-size: 28px;
    line-height: 1.4;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: normal;
}

.text-narrow p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.story-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.story-list li {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

.story-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #3498db;
}

.inline-image {
    margin: 60px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f8ff;
}

.inline-image figcaption {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.cta-inline {
    background-color: #ecf8ff;
    padding: 50px 40px;
    margin: 70px 0;
    border-left: 5px solid #3498db;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a252f;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #2980b9;
}

.insight-section {
    margin-bottom: 80px;
}

.testimonial-inline {
    background-color: #f9f9f9;
    border-left: 4px solid #95a5a6;
    padding: 35px 40px;
    margin: 50px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 21px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.services-preview {
    margin: 80px 0;
}

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

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

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f5f5f5;
}

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

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

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

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin: 25px 0;
    font-family: 'Arial', sans-serif;
}

.btn-service {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #34495e;
}

.form-section {
    margin: 80px 0;
}

.order-form {
    max-width: 600px;
    margin: 50px auto 0;
}

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

.form-group label {
    display: block;
    font-size: 17px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group a {
    color: #3498db;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.final-thought {
    margin: 80px 0;
}

.disclaimer-section {
    margin: 80px 0;
    padding: 40px;
    background-color: #fef9e7;
    border: 1px solid #f9e79f;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #7d6608;
    font-family: 'Arial', sans-serif;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.btn-cookie.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 20px;
}

.contact-section {
    margin: 60px 0;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-block {
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
    font-family: 'Arial', sans-serif;
}

.contact-detail {
    font-size: 19px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
    font-style: italic;
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 80px 0;
}

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

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

.thanks-service h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.service-name-display {
    font-size: 19px;
    font-weight: bold;
    color: #2c3e50;
}

.legal-page .text-narrow {
    max-width: 800px;
}

.legal-date {
    font-size: 16px;
    color: #7f8c8d;
    font-style: italic;
}

.legal-content {
    margin: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 30px 30px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.services-detailed {
    margin: 60px 0;
}

.service-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.service-figure {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f8ff;
}

.service-info {
    padding: 40px 0;
}

.service-duration {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-includes {
    margin: 30px 0;
    padding: 30px;
    background-color: #f8f9fa;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
}

.price-label {
    font-size: 18px;
    color: #7f8c8d;
    font-family: 'Arial', sans-serif;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .editorial-content {
        padding: 40px 20px;
    }

    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .lead-text {
        font-size: 19px;
    }

    .text-narrow h2 {
        font-size: 30px;
    }

    .text-narrow h3 {
        font-size: 24px;
    }

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

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

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

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