* {
    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;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

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

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2a4858;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e3442;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a5d6a;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3a4d5a;
    opacity: 1;
}

.cta-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #2a4858;
    color: #2a4858;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background-color: #2a4858;
    color: #fff;
    opacity: 1;
}

.intro-split {
    display: flex;
}

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

.intro-image,
.intro-content {
    flex: 1;
}

.intro-image {
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

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

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.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: 300px;
    background-color: #fff;
    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 4px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a4858;
    margin-bottom: 1rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #2a4858;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1e3442;
}

.cta-split {
    display: flex;
    padding: 4rem 5%;
    background-color: #2a4858;
    color: #fff;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

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

.cta-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

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

.form-left,
.form-right {
    flex: 1;
}

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

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-item .icon {
    width: 24px;
    height: 24px;
    background-color: #2a4858;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #2a4858;
}

.btn-submit {
    padding: 1rem;
    background-color: #2a4858;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.footer-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.footer-left p {
    font-size: 0.95rem;
    color: #ccc;
}

.footer-center h4,
.footer-right h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-center li {
    margin-bottom: 0.6rem;
}

.footer-center a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-right p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 9999;
    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 {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2a4858;
    color: #fff;
}

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

.btn-reject {
    background-color: #555;
    color: #fff;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-split,
.values-split {
    display: flex;
}

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

.story-text,
.story-image,
.values-text,
.values-image {
    flex: 1;
}

.story-text,
.values-text {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2,
.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2a4858;
}

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

.story-image,
.values-image {
    position: relative;
    overflow: hidden;
}

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

.team-split {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-intro p {
    font-size: 1.2rem;
    color: #666;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2a4858;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.service-detail-split {
    display: flex;
    padding: 4rem 5%;
}

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

.service-content,
.service-visual {
    flex: 1;
}

.service-content {
    padding: 2rem 4rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-split.reverse .service-content {
    padding: 2rem 0 2rem 4rem;
}

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

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

.benefit-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.benefit-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2a4858;
}

.service-visual {
    position: relative;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
}

.contact-details,
.contact-map {
    flex: 1;
}

.contact-details {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2a4858;
}

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

.contact-map {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: #999;
}

.info-split {
    display: flex;
}

.info-left,
.info-right {
    flex: 1;
}

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

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

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #2a4858;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.info-right {
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-info {
    margin: 1.5rem 0;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #2a4858;
}

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

.thanks-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.next-steps-split {
    display: flex;
}

.next-content,
.next-visual {
    flex: 1;
}

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

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background-color: #2a4858;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.timeline-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2a4858;
}

.timeline-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.next-visual {
    position: relative;
    overflow: hidden;
}

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

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

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

.legal-content > p:first-of-type {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
}

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

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

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

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

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

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

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

.gdpr-table th,
.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.gdpr-table td,
.cookies-table td {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .form-split,
    .footer-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .service-detail-split,
    .contact-info-split,
    .info-split,
    .thanks-split,
    .next-steps-split {
        flex-direction: column;
    }

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

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

    .nav-menu {
        display: none;
    }

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

    .service-content {
        padding: 2rem 0;
    }

    .service-detail-split.reverse .service-content {
        padding: 2rem 0;
    }

    .cookie-content {
        flex-direction: column;
    }

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