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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.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: 85vh;
    padding: 60px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 36px;
    color: #4a4a4a;
}

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

.cta-primary:hover {
    background: #0052a3;
}

.hero-visual-overlap {
    flex: 1;
    position: relative;
    margin-left: -60px;
}

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

.intro-asymmetric {
    display: flex;
    padding: 120px 6% 80px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.intro-image-floating {
    flex: 0.8;
    background: #f1f3f5;
}

.intro-image-floating img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.problem-highlight {
    display: flex;
    padding: 80px 6%;
    background: #1a1a1a;
    color: #ffffff;
    gap: 60px;
}

.problem-card-left {
    flex: 1;
}

.problem-card-left h3 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 700;
}

.problem-card-left ul {
    list-style: none;
}

.problem-card-left li {
    font-size: 19px;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.problem-card-left li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.problem-visual-right {
    flex: 1;
    background: #2a2a2a;
}

.problem-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.9;
}

.solution-reveal {
    padding: 100px 18% 100px 6%;
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 100%);
}

.solution-content-diagonal {
    transform: translateX(40px);
}

.solution-content-diagonal h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.solution-content-diagonal p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 6%;
    gap: 30px;
    background: #f8f9fa;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 1 1 calc(60% - 15px);
}

.service-offset {
    flex: 1 1 calc(40% - 15px);
    margin-top: 60px;
}

.service-small {
    flex: 1 1 calc(35% - 15px);
}

.service-wide {
    flex: 1 1 calc(65% - 15px);
    margin-top: -40px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    margin: 0 24px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

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

.service-select:hover {
    background: #0052a3;
}

.trust-element-diagonal {
    padding: 100px 6% 100px 12%;
    background: linear-gradient(120deg, #0066cc 0%, #004999 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    transform: skewY(2deg);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 48px;
    font-weight: 700;
}

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

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

.stat-number {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffc107;
}

.stat-label {
    font-size: 18px;
    line-height: 1.4;
}

.form-section-offset {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    background: #f8f9fa;
}

.form-intro {
    flex: 0.9;
}

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

.form-intro p {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
}

.contact-form-asymmetric {
    flex: 1.1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    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 {
    width: 100%;
    padding: 16px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 60px 8%;
    background: #fff8e1;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 6% 40px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand-block {
    flex: 1.5;
}

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

.footer-brand-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
}

.footer-links-block,
.footer-legal-block {
    flex: 1;
}

.footer-links-block h4,
.footer-legal-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links-block a,
.footer-legal-block a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-block a:hover,
.footer-legal-block a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background: #555;
    color: #ffffff;
}

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

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

    .hero-content-offset {
        padding-right: 0;
    }

    .hero-visual-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

    .intro-asymmetric,
    .problem-highlight,
    .form-section-offset {
        flex-direction: column;
    }

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

    .service-large,
    .service-offset,
    .service-small,
    .service-wide {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .trust-stats {
        flex-direction: column;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

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

.page-hero {
    padding: 80px 6% 60px;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

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

.about-intro {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.about-image {
    flex: 0.8;
    background: #f1f3f5;
}

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

.mission-section {
    padding: 80px 6%;
    background: #f8f9fa;
}

.mission-section h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-section {
    padding: 80px 12%;
    background: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.approach-section {
    padding: 80px 6%;
    background: #f8f9fa;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    min-width: 60px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-section {
    padding: 80px 6%;
    text-align: center;
    background: #ffffff;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0052a3;
}

.services-detailed {
    padding: 60px 6%;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.comparison-section {
    padding: 80px 6%;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.comparison-grid {
    display: flex;
    gap: 24px;
}

.comparison-item {
    flex: 1;
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.comparison-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 700;
}

.comparison-item p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.comparison-best-for {
    display: block;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.services-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-main {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 32px;
}

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

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.contact-image-section {
    flex: 1;
    background: #f1f3f5;
}

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

.contact-extra-info {
    padding: 80px 6%;
    background: #f8f9fa;
}

.contact-extra-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-cta {
    padding: 80px 6%;
    text-align: center;
    background: #ffffff;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.thanks-section {
    padding: 100px 6%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
}

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

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

.thanks-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

.thanks-note {
    font-size: 15px;
    color: #888;
    font-style: italic;
    margin-top: 16px;
}

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

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: center;
}

.step-item {
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background 0.3s;
}

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

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

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

.legal-page {
    padding: 60px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.legal-date {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #0066cc;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #333;
}

.legal-page strong {
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .about-intro,
    .contact-main {
        flex-direction: column;
    }

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

    .comparison-grid,
    .steps-grid {
        flex-direction: column;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 28px;
    }

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

    .legal-page {
        padding: 40px 6%;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}