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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-links a:hover {
    color: #2c3e50;
}

.content-flow {
    background-color: #fff;
}

.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.hero-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.narrative-block {
    padding: 2rem 1.5rem;
}

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

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.text-column h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.text-column h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 400;
}

.text-column ul,
.text-column ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.text-column li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.insight-list {
    list-style: none;
    margin-left: 0;
}

.insight-list li {
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
    font-size: 1.4rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f5f5f5;
}

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

.caption {
    padding: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #2c3e50;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 1.15rem;
    color: #444;
}

.service-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 3px solid #2c3e50;
}

.service-inline h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cta-inline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cta-inline:hover {
    background-color: #1a252f;
}

.contact-form-section {
    background-color: #f5f5f5;
    padding: 3rem 1.5rem;
    margin-top: 3rem;
}

.editorial-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.submit-btn {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

.references-section {
    padding: 2rem 1.5rem;
    background-color: #f9f9f9;
    margin-top: 3rem;
}

.references-list {
    list-style: decimal;
    font-size: 0.95rem;
    line-height: 1.6;
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #2c3e50;
}

.references-list a:hover {
    color: #1a252f;
}

.disclaimer-section {
    padding: 2rem 1.5rem;
    background-color: #fff9e6;
    border-top: 2px solid #ffd700;
    margin-top: 3rem;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.page-header {
    padding: 3rem 1.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.price-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 3px solid #2c3e50;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.price-detail {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.contact-info-box {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-box h3 {
    margin-bottom: 0.8rem;
}

.contact-info-box p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.note-text {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.thanks-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.thanks-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    margin: 2rem auto;
    border-radius: 4px;
    border-left: 4px solid #4caf50;
    max-width: 680px;
    font-size: 1.1rem;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 680px;
    border-radius: 4px;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.back-link:hover {
    background-color: #1a252f;
}

.legal-content {
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
}

.legal-content p {
    font-size: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3d5169;
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c3e50;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #fff;
}

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

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

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

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .intro-lead {
        font-size: 1.1rem;
    }

    .text-column {
        padding: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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