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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

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

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

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

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 12px;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.intro-left {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
}

.intro-right p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 16px;
}

.benefits-stacked {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.benefits-stacked h2 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 60px;
    text-align: center;
}

.benefit-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 16px;
}

.benefit-text p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.benefit-image {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
}

.services-preview {
    background-color: #f9fafb;
    padding: 100px 40px;
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    flex: 1 1 350px;
    max-width: 420px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 2px solid #2563eb;
    position: relative;
}

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

.service-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.service-features li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 24px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

.btn-service {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-service:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

.services-link-wrap {
    text-align: center;
    margin-top: 40px;
}

.link-more {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
}

.testimonials-inline {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials-inline h2 {
    font-size: 40px;
    color: #111827;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-item {
    margin-bottom: 48px;
}

.testimonial-item blockquote {
    font-size: 20px;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
    border-left: 4px solid #2563eb;
    padding-left: 24px;
}

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

.form-section {
    background-color: #1f2937;
    padding: 100px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #d1d5db;
    font-size: 18px;
    margin-bottom: 48px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

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

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

.disclaimer-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.disclaimer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    padding: 20px;
    background-color: #f9fafb;
    border-left: 4px solid #d1d5db;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
}

.page-hero {
    background-color: #1f2937;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #d1d5db;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.about-image {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 16px;
}

.mission-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

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

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.values-stacked {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-stacked h2 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 60px;
    text-align: center;
}

.value-block {
    margin-bottom: 48px;
}

.value-block h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 16px;
}

.value-block p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.stats-section {
    background-color: #2563eb;
    color: #fff;
    padding: 80px 40px;
}

.stats-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1 1 250px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #dbeafe;
}

.cta-section {
    background-color: #f9fafb;
    padding: 100px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 12px;
}

.service-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    color: #111827;
    margin-top: 32px;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 28px;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.additional-services {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.additional-services h2 {
    font-size: 40px;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
}

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

.additional-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 32px;
    flex: 1 1 350px;
    border: 1px solid #e5e7eb;
}

.additional-item h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

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

.additional-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.comparison-note {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.comparison-note h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 32px;
    text-align: center;
}

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

.contact-layout {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.map-section {
    background-color: #f9fafb;
    padding: 80px 40px;
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 16px;
}

.map-section p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.thanks-message {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #1e40af;
}

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px;
}

.next-steps h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: #eff6ff;
    text-decoration: none;
}

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

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

.last-updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #374151;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

    .intro-section,
    .benefit-block,
    .service-detail,
    .about-split {
        flex-direction: column;
    }

    .benefit-block.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

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

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

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

    .service-card {
        max-width: 100%;
    }

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

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