* {
    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;
}

.main-header {
    background-color: #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #e8eaed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a9eff;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #b0b8c1;
    padding: 0.3rem 0.8rem;
    border: 1px solid #3a4a5c;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4rem;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

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

.intro-left-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    line-height: 1.3;
}

.intro-left-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-preview {
    background-color: #fafbfc;
    padding: 5rem 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #6b7280;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #059669;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #047857;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-left-content {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-right {
    flex: 1;
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 8px;
}

.form-left-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.form-left-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #2563eb;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #1a2332;
    padding: 4rem 2rem;
}

.trust-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.trust-content-centered p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

.main-footer {
    background-color: #111827;
    padding: 3rem 2rem 1.5rem;
    color: #d1d5db;
}

.footer-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 2rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    padding: 0 1.5rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a9eff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #1f2937;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    max-width: 1400px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #d1d5db;
    margin: 0;
    flex: 1;
    padding-right: 2rem;
}

.cookie-content p a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #059669;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    min-height: 400px;
}

.services-detail {
    padding: 3rem 2rem;
    background-color: #fafbfc;
}

.service-detail-card {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a2332;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4b5563;
    font-size: 1.05rem;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    color: #6b7280;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2563eb;
}

.btn-service-cta {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.cta-section-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #1a2332;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.btn-large-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-large-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.about-content-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.about-right-image {
    flex: 1;
    background-color: #f0f4f8;
}

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

.values-section-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.values-section-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.values-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.value-item {
    margin-bottom: 1.8rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #4b5563;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #fafbfc;
}

.approach-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.approach-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.approach-header-centered p {
    font-size: 1.2rem;
    color: #6b7280;
}

.process-steps-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.process-step-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.process-step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.process-step-card p {
    color: #4b5563;
    line-height: 1.7;
}

.team-section-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.team-content {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-expertise {
    list-style: none;
}

.team-expertise li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
}

.team-expertise li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-details {
    flex: 1;
    padding-right: 4rem;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: #1a2332;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-cta-section {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4b5563;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d1d5db;
}

.cookie-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #1a2332;
}

.cookie-table td {
    color: #4b5563;
}

.thanks-page-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    min-height: 500px;
}

.thanks-left {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-right {
    flex: 1;
    background-color: #f0f4f8;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #059669;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

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

.service-confirmation {
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.next-steps {
    margin-bottom: 2.5rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 0.8rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .page-hero-split,
    .service-detail-card,
    .about-content-split,
    .values-section-split,
    .team-section-split,
    .contact-info-split,
    .thanks-page-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-card.reverse,
    .values-section-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .intro-left-content,
    .form-left-content,
    .about-left-content,
    .team-content,
    .thanks-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-content p {
        padding-right: 0;
    }

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

    .footer-column {
        margin-bottom: 2rem;
        padding: 0;
    }

    .process-step-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .ad-disclosure {
        order: -1;
    }
}