* {
    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;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 80px 80px 80px;
    overflow: hidden;
}

.hero-content-offset {
    width: 50%;
    padding-right: 60px;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-irregular {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8eaf0;
}

.hero-image-irregular img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.intro-overlap {
    display: flex;
    padding: 0 80px;
    margin-top: -100px;
    position: relative;
    z-index: 3;
    gap: 60px;
    margin-bottom: 120px;
}

.intro-card-left {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-card-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-stats-right {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transform: rotate(2deg);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
}

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

.section-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 10%;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-shift-1 {
    flex: 0 0 calc(60% - 20px);
    margin-left: 0;
}

.card-shift-2 {
    flex: 0 0 calc(35% - 20px);
    margin-left: auto;
}

.card-shift-3 {
    flex: 0 0 calc(40% - 20px);
    margin-left: 5%;
}

.card-shift-4 {
    flex: 0 0 calc(50% - 20px);
}

.card-shift-5 {
    flex: 0 0 calc(55% - 20px);
    margin-left: auto;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8eaf0;
}

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

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
    display: block;
}

.select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
}

.diagonal-section {
    position: relative;
    padding: 120px 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: skewY(-3deg);
    z-index: 0;
}

.diagonal-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.diagonal-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.protection-layers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.layer {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.layer h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.layer p {
    font-size: 15px;
    opacity: 0.95;
}

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

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 5px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.cta-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #229954;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 80px 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.about-hero {
    padding: 140px 80px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-image {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eaf0;
}

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

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

.team-section-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 0 0 calc(33.333% - 27px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    color: #666;
    line-height: 1.7;
}

.values-diagonal {
    position: relative;
    padding: 100px 80px;
    background: #2c3e50;
    color: #ffffff;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.value-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 0 0 calc(33.333% - 27px);
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.value-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-block p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 80px;
    background: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #856404;
}

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

.services-hero {
    padding: 140px 80px 80px;
    background: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-hero p {
    font-size: 20px;
    color: #666;
}

.services-detail-section {
    padding: 80px 80px;
}

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

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

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8eaf0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.service-detail-content li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-block {
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.cta-section-offset {
    padding: 80px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section-offset .cta-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-section-offset .cta-primary:hover {
    background: #f8f9fa;
}

.contact-hero {
    padding: 140px 80px 80px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
}

.contact-info-section {
    padding: 80px 80px;
}

.contact-details-asymmetric {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 0 0 calc(33.333% - 40px);
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    background: #e8f4f8;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    color: #2c3e50;
    margin: 0;
}

.contact-map-placeholder {
    height: 300px;
    background: #e8eaf0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    border-radius: 8px;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
}

.thanks-section {
    padding: 140px 80px 80px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-confirmation p {
    margin-bottom: 5px;
    color: #2c3e50;
}

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

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 140px 80px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-page li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
}

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        left: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 40px 60px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-irregular {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: rotate(0);
    }

    .intro-overlap {
        flex-direction: column;
        padding: 0 40px;
        margin-top: 60px;
    }

    .intro-stats-right {
        flex: 1;
    }

    .zigzag-section,
    .diagonal-section,
    .form-section-irregular,
    .footer-asymmetric {
        padding: 60px 40px;
    }

    .service-card {
        flex: 0 0 100% !important;
        margin-left: 0 !important;
    }

    .layer,
    .approach-item,
    .value-block,
    .contact-block {
        flex: 0 0 100%;
    }

    .about-story-offset,
    .service-detail-card {
        flex-direction: column;
        padding: 60px 40px;
    }

    .story-image,
    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .contact-details-asymmetric {
        flex-direction: column;
    }

    .form-container-offset {
        margin-left: 0;
    }
}