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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #0A0E27;
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A0E27;
    color: #F8FAFC;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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;
    min-width: 300px;
}

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

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

.btn-cookie-accept {
    background: #0066FF;
    color: white;
}

.btn-cookie-accept:hover {
    background: #0052CC;
}

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

.btn-cookie-reject:hover {
    background: #F8FAFC;
    color: #0A0E27;
}

.main-nav {
    background: #0A0E27;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D4FF;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    color: #F8FAFC;
    font-size: 0.85rem;
    opacity: 0.8;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #00D4FF;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    overflow: hidden;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    z-index: 2;
    transform: translateX(-30px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    color: #F8FAFC;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #E2E8F0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #0066FF;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.cta-primary:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(30px) translateY(20px) rotate(2deg);
    background-color: #1a1f3a;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.insight-section {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-left {
    flex: 1;
    transform: translateX(-20px);
}

.insight-left h2 {
    font-size: 2.5rem;
    color: #0066FF;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.insight-left p {
    font-size: 1.2rem;
    color: #64748B;
    font-style: italic;
}

.insight-right {
    flex: 1;
    transform: translateX(20px);
}

.insight-right p {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 5rem 2rem;
    background: white;
}

.services-header-offset {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    transform: translateX(-15px);
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: #0A0E27;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #64748B;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex-basis: calc(60% - 1rem);
    min-width: 350px;
}

.card-offset {
    flex-basis: calc(38% - 1rem);
    min-width: 300px;
    transform: translateY(30px);
}

.card-small {
    flex-basis: calc(35% - 1rem);
    min-width: 300px;
    transform: translateY(-20px);
}

.card-wide {
    flex-basis: calc(63% - 1rem);
    min-width: 350px;
    transform: translateY(15px);
}

.card-medium {
    flex-basis: calc(45% - 1rem);
    min-width: 320px;
}

.card-elevated {
    flex-basis: calc(53% - 1rem);
    min-width: 330px;
    transform: translateY(-30px);
}

.service-image {
    height: 250px;
    overflow: hidden;
    background-color: #E2E8F0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #0A0E27;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    color: #0066FF;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: #7C3AED;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0066FF 0%, #7C3AED 100%);
    position: relative;
}

.trust-content-overlap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-text {
    flex: 1;
    color: white;
    transform: translateY(-20px);
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

.trust-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateY(20px);
}

.trust-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    transform: translateY(30px);
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #0A0E27;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
}

.contact-form-irregular {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-size: 1rem;
    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: #0066FF;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #0066FF;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
}

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

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

.main-footer {
    background: #0A0E27;
    color: #E2E8F0;
    padding: 4rem 2rem 2rem;
}

.footer-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-section h3 {
    color: #00D4FF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #00D4FF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
}

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

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        transform: none;
    }

    .insight-container {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-left,
    .insight-right {
        transform: none;
    }

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

    .service-card {
        flex-basis: 100%;
        transform: none !important;
    }

    .trust-content-overlap {
        flex-direction: column;
    }

    .trust-text,
    .trust-points {
        transform: none;
    }

    .form-container-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .form-intro,
    .contact-form-irregular {
        transform: none;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-summary {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.service-summary h3 {
    font-size: 1.2rem;
    color: #0A0E27;
    margin-bottom: 0.8rem;
}

.service-summary p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.btn-back-home {
    display: inline-block;
    background: #0066FF;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #F8FAFC;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #0A0E27;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #0066FF;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-section ul,
.content-section ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.content-section li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.content-section strong {
    color: #0A0E27;
    font-weight: 600;
}

.contact-info-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-card .contact-detail {
    background: #F8FAFC;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.about-hero {
    background: linear-gradient(135deg, #0066FF 0%, #7C3AED 100%);
    padding: 5rem 2rem;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0A0E27;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #F8FAFC;
    padding: 2.5rem;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #0066FF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #475569;
    line-height: 1.7;
}

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

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