* {
    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: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-button {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #0052a3;
}

.intro-split {
    display: flex;
    padding: 100px 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.split-content ul {
    margin-top: 20px;
    margin-left: 20px;
}

.split-content li {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
}

.text-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    display: inline-block;
}

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

.benefits-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

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

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.services-preview-split {
    display: flex;
    padding: 100px 0;
}

.services-list {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.services-list li {
    font-size: 18px;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonials-section {
    background-color: #fafafa;
    padding: 100px 40px;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial {
    background-color: #fff;
    padding: 35px;
    margin-bottom: 25px;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #888;
    font-weight: 600;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.form-intro img {
    width: 100%;
    border-radius: 8px;
}

.form-container {
    flex: 1;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

input,
select,
textarea {
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    background-color: #0066cc;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0052a3;
}

.trust-section {
    background-color: #f4f4f4;
    padding: 100px 40px;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

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

.trust-item p {
    font-size: 16px;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 40px 0;
}

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

.footer-column {
    flex: 1;
}

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

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 25px 40px;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #333;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

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

.cookie-link {
    color: #0066cc;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.about-split,
.team-split {
    display: flex;
    padding: 100px 40px;
}

.about-split.reverse,
.team-split.reverse {
    flex-direction: row-reverse;
}

.values-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

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

.value-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.process-section {
    padding: 100px 40px;
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    min-width: 80px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.coverage-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.coverage-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.coverage-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
}

.services-detailed {
    padding: 60px 40px;
}

.service-item-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

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

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-content ul {
    margin: 20px 0 30px 20px;
}

.service-content li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.price-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #888;
}

.pricing-notes {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.pricing-notes h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.pricing-notes p,
.pricing-notes ul {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pricing-notes ul {
    margin-left: 30px;
}

.pricing-notes li {
    margin-bottom: 12px;
}

.contact-content {
    padding: 80px 40px;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-faq {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.contact-faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 35px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #28a745;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #0066cc;
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    margin-left: 25px;
}

.thanks-next-steps li {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.legal-page {
    padding: 80px 40px;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page strong {
    color: #1a1a1a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .form-split,
    .about-split,
    .team-split,
    .service-item-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-left h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

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

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

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