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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    color: #94a3b8;
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid #475569;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #ffffff;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8fafc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.split-layout-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.content-right img,
.content-left img {
    width: 100%;
    height: 100%;
    display: block;
}

h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 16px;
    color: #475569;
    font-size: 16px;
}

.services-preview {
    padding: 100px 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 42px;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px 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 8px 30px rgba(0,0,0,0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    color: #1a2332;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    margin: 0 24px 20px;
    color: #64748b;
    font-size: 15px;
}

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

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.cta-left-side h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-left-side p {
    color: #cbd5e1;
    font-size: 18px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #1e293b;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-wrapper-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 20px;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

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

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: #1a2332;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    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: #2563eb;
}

.btn-submit {
    padding: 16px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.link-arrow {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.2s ease;
}

.link-arrow:after {
    content: " →";
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef3c7;
}

.disclaimer-box {
    background-color: #fef9e5;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 40px;
}

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

.disclaimer-box p {
    color: #78350f;
    line-height: 1.7;
}

.footer {
    background-color: #1a2332;
    padding: 60px 0 30px;
    color: #cbd5e1;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: #94a3b8;
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #cbd5e1;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #475569;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #334155;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 16px;
}

.page-subtitle {
    color: #dbeafe;
    font-size: 20px;
}

.about-content {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.value-item h3 {
    color: #1a2332;
    font-size: 22px;
    margin-bottom: 12px;
}

.value-item p {
    color: #64748b;
    font-size: 15px;
}

.technology-section {
    padding: 80px 0;
}

.team-approach {
    padding: 80px 0;
    background-color: #f8fafc;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content h2 {
    margin-bottom: 24px;
}

.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 0;
}

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

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

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

.service-content {
    flex: 1;
}

.service-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content h2 {
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #475569;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
    line-height: 1;
}

.service-pricing-box {
    margin-top: 30px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
}

.contact-content {
    padding: 80px 0;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    color: #1a2332;
    font-size: 20px;
    margin-bottom: 12px;
}

.map-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.map-section h2 {
    margin-bottom: 16px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.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 {
    color: #1a2332;
    margin-bottom: 20px;
}

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

.selected-service-info {
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #1e3a8a;
    font-weight: 600;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    margin-bottom: 40px;
}

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

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    color: #64748b;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    color: #1a2332;
    font-size: 42px;
    margin-bottom: 12px;
}

.last-updated {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    color: #334155;
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page h4 {
    color: #475569;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #475569;
}

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

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

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

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

.cookie-table td {
    color: #475569;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

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

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

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

    .form-wrapper-split {
        flex-direction: column;
    }

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

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

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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