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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90a4;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 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);
}

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    color: var(--bg-white);
}

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

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

.intro-image {
    flex: 1;
    background-color: #ccc;
}

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

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

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--bg-white);
}

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

.service-visual {
    flex: 1;
    background-color: #bbb;
}

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

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

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-details p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    min-height: 80vh;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-intro img {
    margin-top: 2rem;
    border-radius: 12px;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    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: #d35400;
}

.trust-split {
    display: flex;
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.trust-content {
    flex: 1;
    padding-right: 3rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
}

.trust-visual {
    flex: 1;
    background-color: #aaa;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.footer-split {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

.about-hero-split {
    display: flex;
    min-height: 60vh;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.story-split {
    display: flex;
    padding: 5rem 5%;
}

.story-content {
    flex: 1;
    padding-right: 3rem;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.story-image {
    flex: 1;
    background-color: #bbb;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.values-split {
    display: flex;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

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

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

.values-content {
    flex: 1;
    padding-left: 3rem;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.approach-split {
    display: flex;
    padding: 5rem 5%;
}

.approach-text {
    flex: 1;
    padding-right: 3rem;
}

.approach-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.approach-visual {
    flex: 1;
    background-color: #aaa;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.team-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.team-description {
    flex: 1;
}

.team-description p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

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

.commitment-split {
    padding: 5rem 5%;
}

.commitment-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.commitment-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.commitment-item p {
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
    color: var(--bg-white);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.services-header-split {
    display: flex;
    min-height: 60vh;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.header-visual {
    flex: 1;
    background-color: #ccc;
}

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

.service-detail-split {
    display: flex;
    padding: 5rem 5%;
    border-bottom: 1px solid var(--border-color);
}

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

.service-info {
    flex: 1;
    padding-right: 3rem;
}

.service-detail-split.reverse .service-info {
    padding-right: 0;
    padding-left: 3rem;
}

.service-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    background-color: #bbb;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.process-overview {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.process-overview h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-split {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-cta {
    padding: 5rem 5%;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-header-split {
    display: flex;
    min-height: 60vh;
}

.contact-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    background-color: #ccc;
}

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

.contact-info-split {
    display: flex;
    padding: 5rem 5%;
}

.info-block {
    flex: 1;
    padding-right: 3rem;
}

.info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-detail p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-visual {
    flex: 1;
    background-color: #bbb;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.visit-split {
    display: flex;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.visit-image {
    flex: 1;
    background-color: #bbb;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.visit-info {
    flex: 1;
    padding-left: 3rem;
}

.visit-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.visit-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.location-details {
    padding: 5rem 5%;
}

.location-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.location-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.location-visual {
    flex: 1;
    background-color: #bbb;
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-cta {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.cta-content {
    text-align: center;
}

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

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-split {
    display: flex;
    min-height: 70vh;
    padding: 5rem 5%;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.thanks-detail {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 1;
    background-color: #bbb;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.next-steps {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.next-steps h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .story-split,
    .values-split,
    .approach-split,
    .team-split,
    .services-header-split,
    .service-detail-split,
    .contact-header-split,
    .contact-info-split,
    .visit-split,
    .location-split,
    .thanks-split,
    .service-card-split {
        flex-direction: column;
    }

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

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

    .hero-left h1,
    .about-text h1,
    .header-content h1,
    .contact-intro h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .intro-text h2,
    .story-content h2,
    .values-content h2,
    .approach-text h2,
    .service-info h2,
    .visit-info h2 {
        font-size: 1.8rem;
    }

    .service-info,
    .values-content,
    .visit-info {
        padding-left: 0;
        padding-right: 0;
    }

    .service-detail-split.reverse .service-info {
        padding-left: 0;
    }

    .commitment-grid,
    .process-split,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-main {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}