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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafc;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1e293b;
}

.hero-content p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #f1f5f9;
    color: #2563eb;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: #e2e8f0;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1e293b;
}

.intro-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-section {
    background-color: #0f172a;
    padding: 100px 40px;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.insight-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
}

.insight-visual {
    flex: 1;
    position: relative;
}

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

.insight-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e1;
    margin-top: 8px;
}

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e293b;
}

.services-header p {
    font-size: 20px;
    color: #64748b;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 400px;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-info p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.select-service:hover {
    background-color: #2563eb;
}

.form-section {
    background-color: #f8fafc;
    padding: 100px 40px;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1e293b;
}

.form-intro p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #475569;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.selected-service-display {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

.disclaimer-section {
    background-color: #fef3c7;
    padding: 50px 40px;
    margin: 80px 0;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #92400e;
}

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

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 40px 30px;
}

.footer-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 14px;
}

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

.cookie-banner.active {
    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;
    font-size: 15px;
    color: #334155;
}

.cookie-content a {
    color: #2563eb;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: #e2e8f0;
    color: #475569;
}

.cookie-reject:hover {
    background-color: #cbd5e1;
}

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 40px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.about-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e293b;
}

.about-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    min-width: 300px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.technology-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

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

.tech-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

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

.tech-content {
    flex: 1;
}

.tech-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1e293b;
}

.tech-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-detail-content p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1e293b;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.contact-item p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
}

.contact-note {
    background-color: #dbeafe;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    color: #1e40af;
}

.contact-visual {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 40px;
}

.contact-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-message {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1e293b;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-next ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #475569;
}

.thanks-next ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 28px;
    line-height: 1;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e293b;
}

.update-date {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #334155;
}

.legal-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookies-table td {
    font-size: 15px;
    color: #475569;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .insight-wrapper,
    .form-split,
    .testimonials-split,
    .about-split,
    .technology-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .services-grid-split {
        flex-direction: column;
    }

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

    .footer-split {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

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

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

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

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

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

    .footer-column {
        flex: 1 1 100%;
    }
}