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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

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

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

.nav-links a:hover {
    color: #2563eb;
}

.editorial-content {
    background-color: #ffffff;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #1a1a1a;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtext {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 700px;
}

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

.intro-section {
    margin-bottom: 48px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.intro-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #374151;
}

.inline-image {
    margin: 56px 0;
    background-color: #f3f4f6;
}

.content-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

figcaption {
    padding: 16px 20px;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

.story-section {
    margin-bottom: 56px;
}

.story-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #374151;
}

.quote-block {
    margin: 40px 0;
    padding: 32px 28px;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    font-size: 19px;
    font-style: italic;
    color: #1f2937;
    line-height: 1.6;
}

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: #6b7280;
}

.insight-section {
    margin-bottom: 56px;
}

.insight-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.3;
}

.insight-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #374151;
}

.insight-section em {
    font-style: italic;
    color: #2563eb;
}

.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
    padding: 32px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 16px;
    color: #4b5563;
}

.solution-section {
    margin-bottom: 56px;
}

.solution-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.3;
}

.solution-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #374151;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

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

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
}

.section-intro {
    font-size: 17px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 48px;
}

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

.service-card {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

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

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #ffffff;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.select-service:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.select-service.selected {
    background-color: #2563eb;
    color: #ffffff;
}

.form-section {
    margin: 64px 0;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > p {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1f2937;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.testimonials-section {
    margin: 80px 0;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial {
    margin-bottom: 32px;
    padding: 28px;
    background-color: #f9fafb;
    border-left: 3px solid #2563eb;
}

.testimonial p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 14px;
    color: #6b7280;
    font-style: normal;
}

.final-cta {
    margin: 80px 0;
    text-align: center;
    padding: 48px 32px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 32px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.2s;
}

.cta-button-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 56px 24px 32px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-top: 16px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    padding: 24px;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #d1d5db;
    font-size: 15px;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

.services-detail {
    margin: 56px 0;
}

.service-detail-card {
    margin-bottom: 56px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-detail-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-detail-card p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 24px;
}

.contact-info {
    margin-bottom: 48px;
}

.contact-info h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.info-block {
    margin-top: 40px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #4b5563;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 24px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.thanks-page p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 17px;
    }

    .content-wrapper {
        padding: 40px 20px;
    }

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

    .story-section h2,
    .insight-section h2,
    .solution-section h2 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 36px;
    }

    .nav-links {
        display: none;
    }

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

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

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

    .service-detail-card {
        padding: 24px;
    }

    .price-large {
        font-size: 28px;
    }
}
