* {
    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: #1a1a1a;
    overflow-x: hidden;
}

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-offset {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.nav-links a.nav-active {
    color: #0066cc;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
}

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

.hero-text-offset {
    flex: 1;
    min-width: 400px;
    padding-left: 40px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

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

.hero-image-offset {
    flex: 1;
    min-width: 400px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.intro-diagonal {
    padding: 120px 20px 100px;
    background: white;
    position: relative;
}

.diagonal-block {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(-1deg);
}

.intro-content-narrow {
    transform: skewY(1deg);
}

.intro-content-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content-narrow p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
}

.services-cards-offset {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-heading-offset {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: left;
    padding-left: 80px;
    color: #1a1a1a;
}

.cards-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
    padding: 0;
}

.service-card.card-left {
    flex-direction: row;
    margin-left: 0;
    margin-right: 120px;
}

.service-card.card-right {
    flex-direction: row-reverse;
    margin-left: 120px;
    margin-right: 0;
}

.service-card.card-center {
    flex-direction: row;
    margin-left: 60px;
    margin-right: 60px;
}

.service-card img {
    width: 45%;
    height: 320px;
    object-fit: cover;
    background-color: #dee2e6;
}

.card-content {
    flex: 1;
    padding: 40px;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

.trust-inline {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
}

.trust-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
}

.form-section-overlap {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 100px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.final-cta-sticky {
    padding: 80px 20px;
    background: #0066cc;
    text-align: center;
}

.cta-content-center h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-offset {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.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 {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #0066cc;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: #1a1a1a;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0066cc;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-service {
    font-weight: 700;
    color: #0066cc;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

.about-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.about-lead {
    font-size: 20px;
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.services-page-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: #0066cc;
    color: white;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-page-lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.contact-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-details {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-item {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-page {
    margin-top: 80px;
    padding: 60px 20px;
    min-height: 60vh;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

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

    .hero-text-offset {
        padding-left: 0;
        min-width: auto;
    }

    .hero-title {
        font-size: 42px;
    }

    .service-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

    .trust-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 40px 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .nav-content {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .section-heading-offset {
        padding-left: 0;
        text-align: center;
    }
}