* {
    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: #ffffff;
}

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

.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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-reject:hover {
    background: #444;
}

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

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

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

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

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

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

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

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

.hero-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

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

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

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-text-narrow .lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.content-narrow h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

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

.content-narrow h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #333;
}

.content-narrow strong {
    font-weight: 600;
    color: #1a1a1a;
}

.content-narrow em {
    font-style: italic;
    color: #444;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.inline-cta {
    max-width: 680px;
    margin: 2.5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-link {
    display: inline-block;
    font-size: 1.15rem;
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #1565c0;
}

.highlight-section {
    background: #f8f9fa;
    border-left: 4px solid #1976d2;
    padding-left: 2.5rem;
    margin: 3rem auto;
}

.testimonial-inline {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.testimonial-inline blockquote {
    background: #fafafa;
    padding: 2rem;
    border-left: 3px solid #333;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.75rem;
}

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

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

.content-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
}

.content-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: bold;
}

.cta-section-block {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: white;
    text-align: center;
    border-radius: 6px;
}

.cta-section-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #1976d2;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.insight-block {
    background: #fff9e6;
    border-radius: 6px;
    padding: 2rem;
    margin: 2.5rem auto;
}

.services-reveal {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #555;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #1976d2;
    background: #f8fbff;
}

.service-card.premium {
    border: 2px solid #ff9800;
    background: #fffaf0;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1976d2;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-badge {
    background: #ff9800;
}

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

.service-card p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.6;
}

.service-benefit {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1976d2;
    margin: 1.25rem 0;
}

.btn-select-service {
    background: #1976d2;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.urgency-section {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding-left: 2.5rem;
    margin: 3rem auto;
}

.final-cta {
    max-width: 680px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: #2c2c2c;
    color: white;
    text-align: center;
    border-radius: 6px;
}

.final-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.final-cta p {
    margin-bottom: 1.5rem;
    color: #ddd;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #2c2c2c;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.trust-builders {
    margin-top: 4rem;
}

.trust-item {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1976d2;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.sticky-cta.show {
    display: flex;
}

.sticky-text {
    font-size: 1.05rem;
    font-weight: 500;
}

.btn-sticky {
    background: white;
    color: #1976d2;
    padding: 0.625rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #f5f5f5;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

#selected-service-name {
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#service-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

#service-form input,
#service-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

#service-form input:focus,
#service-form textarea:focus {
    outline: none;
    border-color: #1976d2;
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
    background: #1976d2;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1565c0;
}

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    color: #888;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hero-text-narrow .lead {
        font-size: 1.1rem;
    }

    .content-narrow,
    .inline-cta,
    .testimonial-inline {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .highlight-section {
        padding-left: 1.5rem;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

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

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

.contact-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1976d2;
}

.page-header {
    max-width: 800px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.services-page-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about-content h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}