* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #4a9db5;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeeba;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 550px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.content-split {
    display: flex;
    min-height: 450px;
}

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

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

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.split-text sup a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.split-image {
    flex: 1;
    background-color: #ccc;
    overflow: hidden;
}

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

.benefits-list {
    margin: 20px 0;
    padding-left: 25px;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.services-preview {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 20px 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 20px;
}

.service-link {
    display: inline-block;
    margin: 0 20px 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.testimonial-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.testimonial-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

blockquote {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.05rem;
}

blockquote footer {
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.form-split {
    display: flex;
    min-height: 500px;
}

.form-intro {
    flex: 1;
    padding: 70px 5%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-container {
    flex: 1;
    padding: 70px 5%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
}

form {
    width: 100%;
    max-width: 500px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #234a56;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 50px 5%;
    background-color: #fef5e7;
    border-top: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #7d6608;
    text-align: center;
    line-height: 1.6;
}

.references-section {
    padding: 50px 5%;
    background-color: var(--bg-white);
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 50px 5% 20px;
}

.footer-split {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bg-light);
}

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

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

.footer-column ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -2px 15px 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: 30px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-header-split {
    display: flex;
    min-height: 450px;
    background-color: var(--bg-light);
}

.header-content {
    flex: 1;
    padding: 70px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.header-content h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.header-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.approach-list {
    margin: 20px 0;
    padding-left: 25px;
}

.approach-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.values-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 35px;
}

.value-card {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.page-header-centered {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.page-header-centered h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header-centered p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

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

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-content ul {
    margin: 15px 0 25px;
    padding-left: 25px;
}

.service-content ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.service-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.pricing-note-section {
    padding: 50px 5%;
    background-color: var(--bg-light);
}

.pricing-note-section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-note-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
    max-width: 900px;
}

.contact-split-section {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 70px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    margin: 30px 0;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-note {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.location-section {
    padding: 60px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-section p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-info {
    margin: 40px 0;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-info ul {
    padding-left: 25px;
}

.thanks-info ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.thanks-next-steps {
    margin: 30px 0;
}

.thanks-next-steps p {
    font-weight: 600;
    margin-bottom: 15px;
}

.thanks-next-steps ul {
    padding-left: 25px;
}

.thanks-next-steps ul li {
    margin-bottom: 10px;
}

.thanks-next-steps a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-next-steps a:hover {
    text-decoration: underline;
}

.selected-service-info {
    margin-top: 30px;
    padding: 25px;
    background-color: #e8f4f8;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 35px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .hero-split,
    .content-split,
    .form-split,
    .page-header-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

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

    .services-grid,
    .values-grid,
    .testimonial-container,
    .footer-split {
        flex-direction: column;
    }

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

    .split-text h2 {
        font-size: 1.8rem;
    }

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

    .nav-right {
        gap: 15px;
        font-size: 0.9rem;
    }
}