* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    margin: 3px 0;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    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;
    transform: translateY(60px);
}

.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: #e8e8e8;
}

.intro-overlap {
    display: flex;
    max-width: 1300px;
    margin: 120px auto 80px;
    padding: 0 40px;
    gap: 80px;
    align-items: flex-start;
}

.intro-card-left {
    flex: 1;
    background: #f9f9f9;
    padding: 60px;
    border-radius: 8px;
    transform: translateX(-40px);
}

.intro-card-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-card-left p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.8;
}

.intro-image-right {
    flex: 1;
    transform: translateY(80px);
}

.intro-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-zigzag {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-offset {
    margin-bottom: 80px;
    padding-left: 60px;
}

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

.section-header-offset p {
    font-size: 19px;
    color: #6a6a6a;
}

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

.service-left {
    padding-left: 0;
}

.service-right {
    padding-left: 120px;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-details {
    flex: 1;
    padding: 40px;
}

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

.service-details p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

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

.btn-select-service:hover {
    background: #0066cc;
    transform: translateX(5px);
}

.form-section-diagonal {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 120px 40px;
    transform: skewY(-2deg);
    margin: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: skewY(2deg);
}

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

.form-container > p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    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: 18px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-block {
    padding: 100px 40px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 18px;
    color: #c0c0c0;
}

.footer {
    background: #f5f5f5;
    padding: 80px 40px 40px;
}

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

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

.footer-col p {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 10px;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px !important;
    color: #999 !important;
    line-height: 1.5;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 25px 40px;
    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: 40px;
}

.cookie-content p {
    color: white;
    font-size: 15px;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    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: 1px solid white;
}

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

.page-hero {
    padding: 180px 40px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 20px;
    color: #5a5a5a;
}

.about-story {
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8e8e8;
}

.values-section {
    padding: 100px 40px;
    background: #f9f9f9;
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8e8e8;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #c0c0c0;
}

.contact-section {
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-detail p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-detail .note {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 15px;
    color: #2c2c2c;
}

.additional-info {
    padding: 80px 40px;
    background: #f9f9f9;
}

.additional-info h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.info-blocks {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 40px 80px;
}

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

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

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

.thanks-message {
    font-size: 19px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-detail {
    font-size: 17px;
    color: #2c2c2c;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

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

.next-steps {
    padding: 80px 40px;
    background: #f9f9f9;
}

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

.steps {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .intro-overlap {
        flex-direction: column;
        gap: 40px;
    }

    .service-item,
    .service-right {
        flex-direction: column;
        padding-left: 0;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .story-layout,
    .team-content,
    .contact-layout {
        flex-direction: column;
    }

    .values-grid,
    .info-blocks,
    .steps {
        flex-direction: column;
    }

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

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