/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* Navigation - Split Style */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 6rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.hero-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background-color: #e8eaed;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.cta-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

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

/* About Split Section */
.about-split {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

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

.split-image {
    position: relative;
    height: 600px;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.split-content {
    padding: 4rem 5rem;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0066cc;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
    margin-left: 0.5rem;
}

/* Services Section */
.services-intro {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 320px;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.btn-select {
    padding: 0.85rem 1.8rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
}

/* Process Split Section */
.process-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    min-height: 600px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0066cc;
    min-width: 50px;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

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

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

.form-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: #0066cc;
    text-decoration: underline;
}

.checkbox-group a:hover {
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 4rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    font-size: 0.9rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

/* Page Hero */
.page-hero {
    padding: 5rem 4rem 3rem;
    text-align: center;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Methodology Section */
.methodology-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #ffffff;
}

.methodology-list {
    list-style: none;
    margin-top: 1.5rem;
}

.methodology-list li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.methodology-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Values Section */
.values-section {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
}

/* CTA Sections */
.cta-about,
.cta-services {
    padding: 5rem 4rem;
    text-align: center;
    background-color: #0066cc;
    color: #ffffff;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-about p,
.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-about .cta-primary:hover,
.cta-services .cta-secondary:hover {
    background-color: #f0f0f0;
    color: #0066cc;
}

/* Services Detail Page */
.services-detail {
    padding: 3rem 4rem 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    min-height: 450px;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

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

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

.service-benefits li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0066cc;
}

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

/* Contact Page */
.contact-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #0066cc;
    border-radius: 5px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.contact-note a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: underline;
}

.contact-note a:hover {
    text-decoration: none;
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 6rem 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1rem;
    color: #333;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Legal Page */
.legal-page {
    padding: 3rem 4rem 5rem;
    background-color: #ffffff;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
}

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

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

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

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

.gdpr-table thead {
    background-color: #f8f9fa;
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.gdpr-table th {
    font-weight: 700;
    color: #1a1a1a;
}

.gdpr-table td {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .about-split,
    .methodology-split,
    .process-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .split-image,
    .service-detail-image,
    .contact-image {
        min-height: 400px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .split-nav {
        padding: 1.5rem 2rem;
    }

    .nav-right {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

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

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

    .service-info h3 {
        font-size: 1.4rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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

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

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

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

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

    .hero-left,
    .split-content,
    .contact-info {
        padding: 2rem 1.5rem;
    }

    .services-intro,
    .form-section,
    .values-section {
        padding: 3rem 1.5rem;
    }

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

    .service-info {
        padding: 1.5rem;
    }
}
