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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --dark-gray: #34495e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 38px;
    z-index: 99;
}

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

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    flex: 1;
    background-color: var(--gray);
    overflow: hidden;
}

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

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.intro-split {
    display: flex;
    padding: 80px 5%;
}

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

.intro-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

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

.process-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 500px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.tech-split {
    display: flex;
    padding: 80px 5%;
    background-color: var(--white);
}

.tech-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.tech-list {
    list-style: none;
    margin: 20px 0;
}

.tech-list li {
    padding: 12px 0 12px 30px;
    position: relative;
}

.tech-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

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

.insights-section > h2 {
    text-align: center;
    margin-bottom: 50px;
}

.insights-split {
    display: flex;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-item {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-image {
    flex: 1;
    background-color: var(--gray);
    overflow: hidden;
}

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

.form-section {
    padding: 80px 5%;
    background-color: var(--dark-gray);
}

.form-container-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-intro {
    flex: 1;
    color: var(--white);
}

.form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

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

input,
select {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: var(--light-bg);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.footer-split {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 25px 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: 30px;
}

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

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-gray);
}

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

.header-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-image {
    flex: 1;
    background-color: var(--gray);
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
    padding: 80px 5%;
}

.story-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

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

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 500px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.team-split {
    display: flex;
    padding: 80px 5%;
}

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

.team-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.expertise-split {
    display: flex;
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.expertise-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-image {
    flex: 1;
    background-color: var(--gray);
    overflow: hidden;
}

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

.expertise-list {
    list-style: none;
    margin: 20px 0;
}

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.services-intro-split {
    display: flex;
    padding: 80px 5%;
}

.service-item-split {
    display: flex;
    padding: 80px 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-bg);
}

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

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

.service-image {
    flex: 1;
    background-color: var(--gray);
    overflow: hidden;
}

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

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 20px;
}

.services-list {
    background-color: var(--white);
}

.services-list h2 {
    text-align: center;
    padding: 60px 5% 0;
}

.service-form-section {
    padding: 80px 5%;
    background-color: var(--dark-gray);
}

.form-split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-text {
    flex: 1;
    color: var(--white);
}

.form-box {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.contact-split {
    display: flex;
    padding: 80px 5%;
}

.contact-info {
    flex: 1;
    padding: 40px 50px;
}

.contact-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.contact-block {
    margin-bottom: 35px;
}

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

.approach-split {
    display: flex;
}

.approach-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-image {
    flex: 1;
    background-color: var(--gray);
    overflow: hidden;
}

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

.location-info-split {
    display: flex;
    padding: 80px 5%;
}

.location-info-split.reverse {
    flex-direction: row-reverse;
}

.location-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.thanks-split {
    display: flex;
    min-height: 500px;
    padding: 80px 5%;
}

.thanks-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

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

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

.legal-content {
    margin-top: 40px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .tech-split,
    .insights-split,
    .form-container-split,
    .about-story-split,
    .team-split,
    .expertise-split,
    .service-item-split,
    .services-intro-split,
    .form-split-container,
    .contact-split,
    .approach-split,
    .location-info-split,
    .thanks-split,
    .page-header-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-item-split.reverse,
    .location-info-split.reverse,
    .insights-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .tech-content,
    .insight-item,
    .story-content,
    .team-content,
    .expertise-content,
    .service-details,
    .contact-info,
    .approach-content,
    .location-content,
    .thanks-content,
    .header-content {
        padding: 40px 20px;
    }

    .hero-image,
    .intro-image,
    .tech-image,
    .insight-image,
    .story-image,
    .team-image,
    .expertise-image,
    .service-image,
    .contact-image,
    .approach-image,
    .location-image,
    .thanks-image,
    .header-image {
        min-height: 300px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

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

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

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

    .process-card,
    .value-card {
        flex: 1 1 100%;
    }
}