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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

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

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

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: #34495e;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

.cta-tertiary {
    display: inline-block;
    background-color: #16a085;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-tertiary:hover {
    background-color: #138d75;
    transform: translateY(-2px);
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.stats-content {
    flex: 1;
}

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 8px;
}

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

.stats-visual {
    flex: 1;
}

.stats-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.content-text {
    flex: 1;
}

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

.content-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.testimonial-content {
    flex: 1;
}

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

.testimonial-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1a73e8;
}

.testimonial-box p {
    font-size: 16px;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.process-content {
    flex: 1.2;
}

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

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

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    min-width: 50px;
}

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

.step p {
    font-size: 16px;
    color: #4a5568;
}

.process-image {
    flex: 0.8;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.location-content {
    flex: 1;
}

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

.location-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.risk-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.risk-content {
    flex: 1;
}

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

.risk-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.risk-image {
    flex: 1;
}

.risk-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.cta-content {
    flex: 1;
}

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

.cta-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-large {
    display: inline-block;
    background-color: #16a085;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 18px;
    color: #4a5568;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.values-text {
    flex: 1;
}

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

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a73e8;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.team-text {
    flex: 1;
}

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

.team-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.mission-text {
    flex: 1;
}

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

.mission-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.trust-text {
    flex: 1;
}

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

.trust-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-item-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

.service-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1a73e8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin: 25px 0;
}

.cta-service {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-service:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

.form-container > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: center;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.cta-submit {
    background-color: #16a085;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-submit:hover {
    background-color: #138d75;
    transform: translateY(-2px);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.availability-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.availability-text {
    flex: 1;
}

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

.availability-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.availability-image {
    flex: 1;
}

.availability-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #16a085;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a73e8;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.next-steps-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.next-image {
    flex: 1;
}

.next-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.next-content {
    flex: 1;
}

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

.step-item {
    margin-bottom: 25px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a73e8;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
}

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

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-container li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #1a73e8;
    text-decoration: none;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: #16a085;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #138d75;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-split,
    .split-reverse,
    .stats-split,
    .content-split,
    .testimonials-split,
    .process-split,
    .location-split,
    .risk-split,
    .cta-split,
    .page-hero-split,
    .about-split,
    .values-split,
    .team-split,
    .mission-split,
    .approach-split,
    .trust-split,
    .services-intro-split,
    .service-item-split,
    .contact-split,
    .availability-split,
    .thanks-split,
    .next-steps-split {
        flex-direction: column;
        padding: 40px 20px;
    }

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

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

    .split-content h2,
    .stats-content h2,
    .content-text h2,
    .testimonial-content h2,
    .process-content h2,
    .location-content h2,
    .risk-content h2,
    .cta-content h2,
    .hero-text h1,
    .about-text h2,
    .values-text h2,
    .team-text h2,
    .mission-text h2,
    .approach-text h2,
    .trust-text h2,
    .intro-text h2,
    .service-content h2,
    .contact-info h2,
    .availability-text h2,
    .thanks-content h1,
    .next-content h2 {
        font-size: 28px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}