* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-items a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.8rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.content-narrow {
    margin-bottom: 3rem;
}

.content-narrow h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #3a3a3a;
}

.intro-text {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.content-img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.insight-box {
    background-color: #f8f8f8;
    padding: 1.8rem 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
}

.insight-box p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin: 0;
}

.quote-section {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #fafafa;
    border-radius: 6px;
}

.quote-section blockquote {
    margin: 0;
}

.quote-section p {
    font-size: 1.2rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.quote-section cite {
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
}

.services-integrated {
    margin: 4rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    font-size: 0.95rem;
    color: #666;
    padding-left: 1.2rem;
    position: relative;
}

.service-features span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem;
}

.select-service {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

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

.testimonial-inline {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: #f8f8f8;
    border-radius: 6px;
}

.testimonial-inline p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.testimonial-inline cite {
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.form-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

.submit-btn {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    margin-top: 1rem;
}

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

.disclaimer-box {
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 1.8rem 2rem;
    margin: 3rem 0;
}

.disclaimer-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f57c00;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 300px;
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

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

.page-header {
    margin-bottom: 3rem;
}

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

.header-subtext {
    font-size: 1.1rem;
    color: #888;
}

.services-page {
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-description p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-description h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-description ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.service-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.faq-item {
    background-color: #f8f8f8;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #4a90e2;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin: 0;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #4a90e2;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.support-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.support-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.thanks-page .confirmation-box {
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0 3rem;
}

.confirmation-text {
    font-size: 1.15rem;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    text-align: center;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.next-steps {
    margin: 3rem 0;
}

.step-item {
    background-color: #f8f8f8;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.tips-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.tips-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.cta-box {
    text-align: center;
    margin: 3rem 0;
}

.return-btn {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.return-btn:hover {
    background-color: #3a7bc8;
}

.legal-page .content-narrow ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-page .content-narrow ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.legal-page .content-narrow ol {
    list-style: decimal;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-page .content-narrow ol li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.cookie-table th {
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    color: #5a5a5a;
}

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

    .nav-items {
        width: 100%;
        justify-content: center;
    }

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}