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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --hover-color: #2980b9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fffbea;
    color: #8b7100;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f5e5a6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    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;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

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

.page-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: var(--bg-light);
}

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

.editorial-hero h1,
.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.subheading {
    font-size: 22px;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

.editorial-content {
    font-size: 19px;
    line-height: 1.75;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
    font-style: italic;
}

.editorial-content p {
    margin-bottom: 28px;
    color: var(--text-dark);
}

.editorial-content h2 {
    font-size: 32px;
    margin-top: 55px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.editorial-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.editorial-content h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.inline-image-section {
    margin: 50px 0;
    background-color: var(--bg-light);
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.quote-block {
    margin: 50px 0;
    padding: 35px 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.quote-block blockquote {
    font-size: 21px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quote-block cite {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    font-style: normal;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--hover-color);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.services-inline {
    margin: 50px 0;
}

.service-card {
    padding: 35px;
    background-color: var(--bg-light);
    margin-bottom: 30px;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
    font-size: 17px;
}

.service-card .price {
    font-size: 26px;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.testimonial-inline {
    margin: 50px 0;
    padding: 35px;
    background-color: #f0f7fb;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-muted);
}

.form-wrapper {
    margin: 60px 0;
    padding: 45px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-wrapper h2 {
    margin-top: 0;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    background-color: var(--bg-white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff9e6;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.reference-section {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.reference-section p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 0;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 0;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    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;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-detailed {
    margin: 50px 0;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
}

.service-body {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-body img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-light);
    flex-shrink: 0;
}

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

.service-text p {
    font-size: 17px;
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-detail {
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-note {
    padding: 20px;
    background-color: #e8f4fd;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 30px;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.map-placeholder {
    margin: 40px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.map-text {
    font-size: 17px;
    color: var(--text-light);
    margin: 0;
}

.additional-contact-info {
    margin-top: 60px;
}

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

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

.thanks-page .editorial-content {
    max-width: 640px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--success-color);
}

.confirmation-box {
    background-color: #e8f4fd;
    padding: 35px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-list {
    list-style: none;
    margin-top: 20px;
}

.confirmation-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
}

.confirmation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.highlight-service {
    font-weight: bold;
    color: var(--accent-color);
}

.thanks-cta {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 40px;
}

.legal-page .editorial-content {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.updated-date {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #e8f4fd;
    border-radius: 8px;
    text-align: center;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
}

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

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

    .editorial-container {
        padding: 40px 20px 60px;
    }

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

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

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

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

    .service-body img {
        width: 100%;
    }

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

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

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

    .thanks-cta {
        flex-direction: column;
    }
}