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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-offset {
    display: flex;
    min-height: 75vh;
    align-items: center;
    padding: 0 6%;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.hero-image-right {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: #ecf0f1;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background: #bdc3c7;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    padding: 100px 6% 100px 10%;
    gap: 80px;
    align-items: center;
    background: #fafafa;
}

.intro-block-overlap {
    flex: 1.2;
    padding-right: 40px;
}

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

.intro-block-overlap p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-visual-offset {
    flex: 0.8;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.intro-visual-offset img {
    width: 100%;
    height: 100%;
}

.services-preview-staggered {
    padding: 120px 6%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-left,
.service-card-right {
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-left img,
.service-card-right img {
    width: 100%;
    height: 100%;
}

.service-card-left {
    margin-left: 0;
    margin-right: 10%;
}

.service-card-right {
    margin-left: 10%;
    margin-right: 0;
}

.service-card-left > *,
.service-card-right > * {
    flex: 1;
}

.service-text {
    padding: 40px;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
}

.cta-inline-offset {
    padding: 100px 12% 100px 6%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    padding: 120px 6%;
    gap: 80px;
    align-items: center;
}

.approach-left {
    flex: 1.3;
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.approach-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.checklist-offset {
    list-style: none;
    padding-left: 0;
}

.checklist-offset li {
    padding: 12px 0 12px 32px;
    font-size: 17px;
    color: #2c3e50;
    position: relative;
}

.checklist-offset li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.approach-right {
    flex: 0.7;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.approach-right img {
    width: 100%;
    height: 100%;
}

.form-section-asymmetric {
    padding: 100px 6% 100px 15%;
    background: #f8f9fa;
}

.form-intro-block {
    margin-bottom: 48px;
}

.form-intro-block h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro-block p {
    font-size: 18px;
    color: #555;
}

.contact-form-offset {
    max-width: 600px;
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-section-stacked {
    padding: 100px 20% 100px 6%;
    background: #fafafa;
}

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.testimonial-offset {
    margin-bottom: 40px;
    padding: 32px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.testimonial-offset p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 6% 20px 6%;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-disclaimer {
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 24px;
}

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

.cookie-content a {
    color: #3498db;
}

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

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

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.page-header-offset {
    padding: 80px 6% 60px 12%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-header-offset h1 {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.about-content-asymmetric {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

.about-block-left {
    flex: 1.2;
}

.about-block-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-block-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-right {
    flex: 0.8;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-image-right img {
    width: 100%;
    height: 100%;
}

.values-stacked {
    padding: 100px 6%;
    background: #fafafa;
}

.values-stacked h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.values-grid-offset {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    padding: 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.team-asymmetric {
    display: flex;
    padding: 100px 10% 100px 6%;
    gap: 80px;
    align-items: center;
}

.team-intro-offset {
    flex: 1;
}

.team-intro-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-intro-offset p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.team-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.team-visual img {
    width: 100%;
    height: 100%;
}

.approach-detail {
    padding: 100px 6%;
}

.approach-detail h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.approach-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.step-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: #3498db;
    min-width: 80px;
}

.step-block h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.services-detailed {
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

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

.service-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info > p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.service-includes li {
    padding: 10px 0 10px 28px;
    font-size: 16px;
    color: #2c3e50;
    position: relative;
    line-height: 1.6;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 24px;
}

.btn-service {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-comparison {
    padding: 80px 6%;
    background: #fafafa;
}

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

.comparison-guide {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.guide-item {
    flex: 1;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.guide-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.cta-services {
    padding: 80px 6%;
    text-align: center;
}

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

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

.contact-layout {
    display: flex;
    padding: 80px 6%;
    gap: 80px;
    align-items: center;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.contact-note {
    padding: 24px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

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

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

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

.thanks-hero {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
    min-height: 60vh;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-details {
    padding: 24px;
    background: #e8f8f5;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.thanks-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.next-steps {
    padding: 80px 6%;
    background: #fafafa;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

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

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    line-height: 60px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.legal-page {
    padding: 60px 6% 80px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-update {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .approach-split,
    .about-content-asymmetric,
    .team-asymmetric,
    .contact-layout,
    .thanks-hero,
    .service-detail-card {
        flex-direction: column;
    }

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

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

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

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

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

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

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

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