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

.ad-disclosure {
    background: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0a0a0a;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 60%;
    height: 80%;
    z-index: 1;
}

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

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

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

.intro-block {
    padding: 100px 80px;
    background: #f8f9fa;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.insight-asymmetric {
    display: flex;
    padding: 0;
    background: #ffffff;
}

.insight-image-left {
    width: 40%;
    background: #e8f0f7;
}

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

.insight-content-right {
    width: 60%;
    padding: 100px 80px 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content-right h3 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.insight-content-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    transition: transform 0.3s;
}

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

.link-arrow::after {
    content: ' →';
    margin-left: 8px;
}

.services-preview {
    padding: 120px 80px;
    background: #fafbfc;
}

.services-preview h2 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 80px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-asymmetric {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.offset-top {
    margin-top: 60px;
}

.service-card.offset-bottom {
    margin-top: -40px;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #e8f0f7;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #0a0a0a;
}

.service-card p {
    margin: 0 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-card .price {
    margin: 0 25px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid #0066cc;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.trust-block {
    display: flex;
    padding: 100px 80px;
    background: #ffffff;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.trust-image {
    flex: 1;
    background: #e8f0f7;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials-inline {
    padding: 100px 80px;
    background: #f0f4f8;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #ffffff;
    border-left: 5px solid #0066cc;
    border-radius: 8px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

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

.testimonial cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.form-section {
    padding: 120px 80px;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 0 0 120px;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    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: 18px 45px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.closing-statement {
    padding: 100px 80px;
    background: #0a0a0a;
    text-align: center;
    color: #ffffff;
}

.closing-statement h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.closing-statement p {
    font-size: 22px;
    color: #cccccc;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0066cc;
}

.footer-brand p {
    color: #cccccc;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

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

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

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

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

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

.footer-column p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    padding: 30px;
    background: #252525;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 1000;
    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: #4a4a4a;
    line-height: 1.6;
}

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

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

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

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

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

.btn-reject:hover {
    background: #cccccc;
}

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

    .hero-content-offset {
        width: 100%;
        padding: 80px 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }

    .insight-asymmetric {
        flex-direction: column;
    }

    .insight-image-left,
    .insight-content-right {
        width: 100%;
    }

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

    .service-card.offset-top,
    .service-card.offset-bottom {
        margin-top: 0;
    }

    .trust-block {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

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

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

.page-header {
    padding: 120px 80px 80px;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background: #e8f0f7;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.values-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-intro {
    padding: 100px 80px;
    background: #ffffff;
}

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

.team-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #0a0a0a;
}

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

.approach-section {
    padding: 100px 80px;
    background: #f0f4f8;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #0a0a0a;
}

.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    opacity: 0.3;
    min-width: 80px;
}

.step h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.impact-stats {
    padding: 100px 80px;
    background: #0a0a0a;
    color: #ffffff;
}

.impact-stats h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 16px;
    color: #cccccc;
}

.cta-about {
    padding: 100px 80px;
    text-align: center;
    background: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #0a0a0a;
}

.services-list-page {
    padding: 80px 80px;
    background: #ffffff;
}

.services-list-page h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #0a0a0a;
}

.service-full {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 400px;
    background: #e8f0f7;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-full-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.service-full-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-full-content .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 20px;
}

.contact-page {
    padding: 80px 80px;
    background: #ffffff;
}

.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0066cc;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
}

.contact-form-side {
    flex: 1;
}

.thanks-page {
    padding: 120px 80px;
    text-align: center;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-page h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-page .cta-primary {
    margin-top: 30px;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-content strong {
    color: #1a1a1a;
}

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

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

    .service-full {
        flex-direction: column;
    }

    .service-full:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        flex: 0 0 300px;
    }

    .approach-steps {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .page-header {
        padding: 80px 30px 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .services-preview,
    .intro-block,
    .trust-block,
    .form-section,
    .testimonials-inline,
    .closing-statement,
    .about-story,
    .values-section,
    .team-intro,
    .approach-section,
    .impact-stats,
    .cta-about,
    .services-list-page,
    .contact-page,
    .thanks-page,
    .legal-page {
        padding: 60px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .value-item {
        min-width: 100%;
    }

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