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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 25px;
}

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #3498db;
}

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

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

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

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

.cta-hero {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #2980b9;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

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

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

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    background-color: #dfe6e9;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 100px 60px;
}

.services-left {
    flex: 0 0 40%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 30px;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
}

.services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.insights-split {
    display: flex;
    padding: 100px 60px;
}

.insights-left {
    flex: 1;
    background-color: #dfe6e9;
}

.insights-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insights-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insights-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.insights-right a {
    color: #3498db;
    font-weight: 600;
}

.trust-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 100px 60px;
}

.trust-left {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.trust-left a {
    color: #3498db;
    font-weight: 600;
}

.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 16px;
    color: #546e7a;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card span {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-split {
    display: flex;
    padding: 100px 60px;
}

.form-left {
    flex: 0 0 35%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 17px;
    color: #546e7a;
}

.form-right {
    flex: 1;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.cta-final {
    background-color: #2c3e50;
    padding: 80px 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #2980b9;
}

.footer-split {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 60px 30px 60px;
}

.footer-left {
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand strong {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 15px;
    color: #95a5a6;
}

.footer-disclaimer {
    max-width: 800px;
    padding: 20px;
    background-color: #253342;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-nav a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
}

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

.footer-nav p a {
    display: inline;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #34495e;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

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

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

.about-split {
    display: flex;
    padding: 100px 60px;
}

.about-left {
    flex: 1;
    background-color: #dfe6e9;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 100px 60px;
}

.values-left {
    flex: 0 0 35%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.values-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-left p {
    font-size: 17px;
    color: #546e7a;
}

.values-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
}

.team-split {
    display: flex;
    padding: 100px 60px;
}

.team-left {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #546e7a;
}

.team-right {
    flex: 1;
    background-color: #dfe6e9;
}

.team-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 100px 60px;
}

.approach-left {
    flex: 1;
    background-color: #dfe6e9;
}

.approach-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.approach-right a {
    color: #3498db;
    font-weight: 600;
}

.cta-section {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.services-grid {
    padding: 60px 60px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-image {
    flex: 0 0 40%;
    background-color: #dfe6e9;
}

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

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

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

.service-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.service-pricing {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    color: #546e7a;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2980b9;
}

.info-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.info-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.info-split {
    display: flex;
    gap: 40px;
}

.info-block {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #546e7a;
}

.contact-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}

.contact-info {
    flex: 0 0 35%;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.faq-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-block {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-block p {
    font-size: 16px;
    color: #546e7a;
}

.thanks-section {
    display: flex;
    min-height: 500px;
    padding: 80px 60px;
}

.thanks-content {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 15px;
}

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

.btn-primary {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    background-color: #dfe6e9;
}

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

.next-steps {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps-split {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    color: #546e7a;
}

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

.legal-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .services-split,
    .insights-split,
    .trust-split,
    .form-split,
    .about-split,
    .values-split,
    .team-split,
    .approach-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .intro-right,
    .services-left,
    .services-right,
    .insights-left,
    .insights-right,
    .trust-left,
    .trust-right,
    .form-left,
    .form-right,
    .about-left,
    .about-right,
    .values-left,
    .values-right,
    .team-left,
    .team-right,
    .approach-left,
    .approach-right,
    .contact-info,
    .contact-form-wrapper,
    .thanks-content,
    .thanks-image {
        flex: none;
        padding: 30px;
    }

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

    .service-image {
        flex: none;
        height: 250px;
    }

    .info-split,
    .steps-split {
        flex-direction: column;
    }

    .faq-block {
        flex: 0 0 100%;
    }

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

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