* {
    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: #1f2937;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #22c55e;
    color: #ffffff;
}

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

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

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

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

.nav a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0ea5e9;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.ad-disclosure-mobile {
    font-size: 0.75rem;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #f9fafb;
    padding: 1rem 2rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 0;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0ea5e9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #0ea5e9;
    text-decoration: none;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #0ea5e9;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.intro-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.intro-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

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

.section-header-center p {
    font-size: 1.2rem;
    color: #64748b;
}

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

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

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

.service-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.service-card-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.service-card-image {
    flex: 1;
    background-color: #e0f2fe;
}

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

.select-service {
    padding: 0.875rem 2rem;
    background-color: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3);
}

.technology-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.tech-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.tech-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1f2937;
}

.tech-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.tech-visual {
    flex: 1;
    background-color: #f0f9ff;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f9fafb;
}

.form-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0c4a6e;
    color: #ffffff;
}

.form-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

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

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0ea5e9;
}

.benefit-item p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.7;
}

.footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.footer-column p,
.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: #0ea5e9;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-mission-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-image {
    flex: 1;
    background-color: #f0f9ff;
}

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

.mission-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.mission-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.mission-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.value-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.value-card p {
    font-size: 1rem;
    color: #475569;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.team-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.team-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.team-visual {
    flex: 1;
    background-color: #f0f9ff;
}

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

.approach-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.approach-split-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.approach-step.reverse {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #0c4a6e;
}

.step-content p {
    font-size: 1.05rem;
    color: #475569;
}

.service-detail-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0c4a6e;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
}

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

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0ea5e9;
}

.service-detail-image {
    flex: 1;
    background-color: #e0f2fe;
}

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

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #0c4a6e;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0ea5e9;
}

.contact-item p {
    font-size: 1.05rem;
    color: #475569;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e0f2fe;
}

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

.contact-why {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.reason-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.reason-card p {
    font-size: 1rem;
    color: #475569;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.selected-service-info {
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    color: #0c4a6e;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0ea5e9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #0ea5e9;
    text-decoration: none;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0ea5e9;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-info {
    text-align: left;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.thanks-info ul {
    padding-left: 1.5rem;
}

.thanks-info li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.legal-updated {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0ea5e9;
}

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

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 1.7;
}

.legal-container a {
    color: #0ea5e9;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .technology-split,
    .form-section-split,
    .about-mission-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .page-hero-split {
        flex-direction: column;
    }

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

    .values-split-grid,
    .contact-reasons-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-content,
    .tech-content,
    .tech-visual,
    .form-info,
    .form-container,
    .mission-image,
    .mission-content,
    .team-content,
    .team-visual,
    .service-detail-content,
    .service-detail-image,
    .contact-details,
    .contact-map-placeholder {
        padding: 2rem;
    }

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

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

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

    .section-header-center h2 {
        font-size: 1.75rem;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .thanks-container {
        padding: 2rem 1.5rem;
    }

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

    .approach-step,
    .approach-step.reverse {
        flex-direction: column;
        text-align: center;
    }
}
