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

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #f5f5f5;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.split-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.split-content a {
    color: #0066cc;
    text-decoration: none;
}

.split-content a:hover {
    text-decoration: underline;
}

.benefits-list, .philosophy-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li, .philosophy-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.services-intro {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0 1.5rem 1rem 1.5rem;
}

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

.select-service {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #999;
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

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

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fffbf0;
    border-top: 2px solid #ffd700;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.reference-item {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.reference-item a {
    color: #0066cc;
    display: inline;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #0066cc;
}

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

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

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

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

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

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

.about-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    padding: 6rem 5%;
    text-align: center;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.qualifications-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

.qualifications-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.qual-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.qual-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

.cta-about {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-about-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-about .cta-primary {
    background-color: #ffffff;
    color: #0066cc;
}

.cta-about .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    padding: 6rem 5%;
    text-align: center;
    color: #ffffff;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.service-detail-section {
    padding: 5rem 5%;
}

.service-detail-section.alt-bg {
    background-color: #fafafa;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.contact-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    padding: 6rem 5%;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-info-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
    font-weight: 700;
}

.contact-detail {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #4a4a4a;
}

.hours-row span:first-child {
    font-weight: 600;
}

.contact-cta-section {
    padding: 5rem 5%;
    background-color: #0066cc;
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.contact-cta-section .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.contact-cta-section .cta-secondary:hover {
    background-color: #ffffff;
    color: #0066cc;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.legal-page {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #4a4a4a;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookies-table td {
    color: #4a4a4a;
}

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

    .split-section.reverse,
    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-image,
    .split-content,
    .service-detail-image,
    .service-detail-content {
        flex: none;
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-image {
        min-height: 350px;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

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

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .services-header h2,
    .qualifications-content h2 {
        font-size: 2rem;
    }

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

    .qual-item {
        flex: 1 1 100%;
    }

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

    .thanks-content {
        padding: 3rem 2rem;
    }

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

    .legal-content {
        padding: 2rem;
    }
}