* {
    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.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 3px;
}

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

.main-nav a {
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0066cc;
}

.hero-split {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: #e5e5e5;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #0066cc;
    color: #ffffff;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.cta-large {
    background: #ff6b35;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.cta-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.value-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

.value-split.reverse {
    background: #f8f9fa;
}

.value-split > div {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.value-split.reverse > div {
    flex-direction: row-reverse;
}

.value-image {
    flex: 1;
    background: #e5e5e5;
}

.value-image img {
    width: 100%;
    border-radius: 8px;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.value-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.link-arrow {
    color: #0066cc;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

.features-grid {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.features-grid h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.features-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.testimonial-section {
    padding: 4rem 2rem;
    background: #0066cc;
    color: #ffffff;
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.services-preview-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-preview-split > div {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.services-preview-content {
    flex: 1;
}

.services-preview-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.services-preview-content > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.service-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
}

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

.service-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.service-item .price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0066cc;
}

.services-preview-image {
    flex: 1;
    background: #e5e5e5;
}

.services-preview-image img {
    width: 100%;
    border-radius: 8px;
}

.methodology-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.methodology-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.trust-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.trust-section a {
    color: #0066cc;
    text-decoration: underline;
}

.trust-section a:hover {
    color: #0052a3;
}

.cta-section-split {
    padding: 5rem 2rem;
    background: #ff6b35;
    color: #ffffff;
}

.cta-section-split > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form-section > .container-narrow > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    border-left: 3px solid #d0d0d0;
    padding-left: 1rem;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-references ol li a {
    color: #66b3ff;
    text-decoration: underline;
}

.footer-references ol li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

.legal-intro {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0066cc;
}

.legal-section h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-section a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #0052a3;
}

.contact-info-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.email-display {
    color: #0066cc;
    font-weight: 600;
}

.contact-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.faq-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detailed {
    padding: 5rem 2rem;
    background: #ffffff;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

.service-detail-image {
    flex: 1;
    background: #e5e5e5;
}

.service-detail-image img {
    width: 100%;
    border-radius: 6px;
}

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

.service-detail-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-detail-intro p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-content {
    padding: 2rem;
    background: #ffffff;
}

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

.service-detail-content ul {
    list-style: none;
    margin: 1rem 0 2rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details ul {
    list-style: none;
    margin: 0;
}

.thanks-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
}

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

.thanks-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content,
    .value-split > div,
    .services-preview-split > div,
    .cta-section-split > div {
        flex-direction: column;
    }

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

    .methodology-steps {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .thanks-icon {
        font-size: 3.5rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}