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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.nav-minimal {
    padding: 20px 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

.main-content {
    max-width: 100%;
}

.hero-editorial {
    margin: 60px auto 80px;
    max-width: 900px;
    padding: 0 40px;
}

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

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

.hero-image {
    margin: 0;
}

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

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

.intro-paragraph {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 60px 0 30px;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #2a2a2a;
}

.inline-image-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.image-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.cta-box {
    background-color: #f8f8f8;
    padding: 50px 60px;
    text-align: center;
    border-left: 4px solid #1a1a1a;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #333333;
}

.pillar-section {
    margin: 45px 0;
    padding-left: 25px;
    border-left: 3px solid #e0e0e0;
}

.pillar-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.pillar-section p {
    font-size: 17px;
    color: #4a4a4a;
}

.testimonial-block {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.testimonial-block blockquote {
    background-color: #fafafa;
    padding: 45px 50px;
    border-left: 5px solid #1a1a1a;
    font-style: italic;
}

.testimonial-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 20px;
}

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

.services-selection {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-selection h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fafafa;
    padding: 35px 30px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0;
}

.select-service {
    width: 100%;
    padding: 14px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #333333;
}

.inquiry-form {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 45px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
}

.inquiry-form h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #333333;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 60px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
}

.page-header-editorial {
    max-width: 900px;
    margin: 60px auto 50px;
    padding: 0 40px;
    text-align: center;
}

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.principle-block {
    margin: 45px 0;
    padding: 30px;
    background-color: #fafafa;
    border-left: 4px solid #e0e0e0;
}

.principle-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.principle-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detailed {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detailed {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-detailed h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-detailed p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-detailed ul {
    margin: 20px 0 25px 25px;
}

.service-detailed li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #333333;
}

.contact-info-block {
    margin: 50px 0;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.thanks-section {
    text-align: center;
    padding: 80px 40px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-details {
    margin-top: 40px;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.thanks-links {
    list-style: none;
    margin-top: 30px;
}

.thanks-links li {
    margin: 15px 0;
}

.thanks-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 3px;
    transition: border-color 0.3s;
}

.thanks-links a:hover {
    border-color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 35px 0 18px;
    color: #2a2a2a;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
    gap: 25px;
}

.cookie-content p {
    flex: 1 1 60%;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

@media (max-width: 768px) {
    .nav-minimal {
        padding: 15px 20px;
    }

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

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

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

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

    .content-narrow,
    .inline-image-section,
    .services-selection,
    .services-detailed {
        padding: 0 20px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cta-box {
        padding: 35px 25px;
    }

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

    .cookie-content p {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}