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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 280px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.btn-cookie-alt {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-right a {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav-right a:hover,
.nav-right a.active {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

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

.hero-content-left p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #555;
}

.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0066cc;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #0066cc;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #0066cc;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.section-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.section-split-reverse {
    display: flex;
    min-height: 70vh;
    align-items: center;
    flex-direction: row-reverse;
}

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 4rem 8%;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.trust-section {
    background: #f9fafb;
    padding: 5rem 5%;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

.services-compact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 5rem 5%;
    text-align: center;
    color: #fff;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #aaa;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    transition: all 0.3s;
}

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

.page-hero {
    text-align: center;
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

.team-section {
    padding: 4rem 5%;
    background: #fff;
}

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

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

.team-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    color: #555;
    line-height: 1.7;
}

.values-list strong {
    color: #0066cc;
}

.services-detailed {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

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

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1.5rem;
}

.service-detail-image {
    flex: 1;
    max-width: 45%;
}

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

.pricing-note {
    background: #f9fafb;
    padding: 3rem 5%;
    margin-bottom: 2rem;
}

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

.pricing-note-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-note-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 3rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: #0066cc;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

.contact-note {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.contact-note p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

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

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-service-info {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #333;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-date {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .section-split,
    .section-split-reverse {
        flex-direction: column;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .split-content-left h2,
    .split-content-right h2 {
        font-size: 2rem;
    }

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

    .service-detail-image {
        max-width: 100%;
    }

    .contact-split {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

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

    .hero-content-left p {
        font-size: 1.1rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
