* {
    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: #ffffff;
    font-size: 18px;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 34px;
    z-index: 99;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.8px;
}

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

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 32px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #2a2a2a;
}

.content-section h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #333;
}

.content-section p {
    margin-bottom: 18px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 32px 0;
}

.full-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

blockquote {
    border-left: 4px solid #1a1a1a;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.inline-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    margin: 24px 0;
    transition: background-color 0.3s;
}

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

.section-cta {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    margin: 24px 0;
    transition: background-color 0.3s;
}

.section-cta:hover {
    background-color: #34495e;
}

.primary-cta {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    margin: 12px 8px;
    transition: background-color 0.3s;
}

.primary-cta:hover {
    background-color: #1557b0;
}

.secondary-cta {
    display: inline-block;
    background-color: transparent;
    color: #1a73e8;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid #1a73e8;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    margin: 12px 8px;
    transition: all 0.3s;
}

.secondary-cta:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.visual-break {
    background-color: #f9f9f9;
    padding: 40px 32px;
    border-radius: 8px;
    margin: 50px -32px;
}

.steps-wrapper {
    margin: 32px 0;
}

.step-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.testimonial-inline {
    background-color: #fafafa;
    border-left: 4px solid #1a73e8;
    padding: 32px;
    margin: 50px 0;
}

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

.highlight-section {
    background-color: #f0f7ff;
    padding: 40px 32px;
    border-radius: 8px;
    margin: 50px -32px;
}

.benefit-list {
    list-style: none;
    margin: 24px 0;
}

.benefit-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    line-height: 1.6;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
    font-size: 20px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    border-color: #1a73e8;
    background-color: #f8fbff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-card > p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    margin: 24px 0;
}

.service-features h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.service-features ul {
    list-style: none;
    margin-left: 0;
}

.service-features li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1a73e8;
    font-weight: 700;
}

.service-details {
    margin: 20px 0;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.service-details p {
    font-size: 15px;
    color: #666;
    margin-bottom: 6px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
}

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

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

.form-section {
    background-color: #fafafa;
    padding: 40px 32px;
    border-radius: 8px;
    margin: 60px -32px;
}

.consultation-form {
    margin-top: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.disclaimer-section {
    background-color: #fff9e6;
    padding: 24px;
    border-radius: 6px;
    margin: 50px 0;
    border: 1px solid #f0e5c8;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.references-section {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 2px solid #e8e8e8;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.references-list {
    margin-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.references-list a {
    color: #1a73e8;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.citation {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.citation:hover {
    text-decoration: underline;
}

.final-cta {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px -32px;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 32px;
}

.final-cta .primary-cta {
    background-color: #ffffff;
    color: #1a1a1a;
}

.final-cta .primary-cta:hover {
    background-color: #f0f0f0;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.value-list {
    list-style: none;
    margin: 24px 0;
}

.value-list li {
    margin-bottom: 24px;
    line-height: 1.6;
}

.value-list strong {
    color: #1a1a1a;
    font-size: 20px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.centered-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-info {
    margin: 40px 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.thanks-info p {
    margin-bottom: 16px;
}

.next-steps {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.next-steps ul {
    list-style: none;
    margin-left: 0;
}

.next-steps li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.cta-group {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 98;
}

.sticky-cta-btn {
    display: block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background-color: #1557b0;
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.5);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 101;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #e0e0e0;
}

@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px 24px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .content-section h2 {
        font-size: 26px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .visual-break,
    .highlight-section,
    .form-section,
    .final-cta {
        margin-left: -24px;
        margin-right: -24px;
        border-radius: 0;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 14px 22px;
        font-size: 15px;
    }
}