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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #5dade2;
    color: white;
}

.btn-accept:hover {
    background: #3498db;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: #2c3e50;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5dade2;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #5dade2;
}

.ad-disclosure {
    position: absolute;
    top: 0.5rem;
    right: 5%;
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 6rem 5% 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-offset p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 0;
    width: 55%;
    height: 100%;
    transform: skewX(-5deg);
    overflow: hidden;
}

.hero-image-diagonal img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    transform: skewX(5deg);
    background-color: #764ba2;
}

.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: white;
}

.intro-block-left {
    flex: 1;
    padding-right: 2rem;
}

.intro-block-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-block-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.intro-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef2;
}

.services-irregular {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 2rem;
}

.card-offset-3 {
    margin-top: 4rem;
}

.card-offset-4 {
    margin-top: 1rem;
}

.card-offset-5 {
    margin-top: 3rem;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 0.95rem;
}

.price-tag {
    padding: 0 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5dade2;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background: #5dade2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #3498db;
}

.form-section-diagonal {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    position: relative;
}

.form-container {
    flex: 1;
    max-width: 600px;
}

.form-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-container p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #5dade2;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #5dade2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3498db;
}

.form-image-overlap {
    flex: 1;
    display: flex;
    align-items: center;
}

.form-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #e8eef2;
}

.trust-section {
    padding: 6rem 5%;
    background: white;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #5dade2;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #666;
    font-size: 1rem;
}

.disclaimer-section {
    padding: 4rem 5%;
    background: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 3rem 5% 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #5dade2;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-header-diagonal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 5%;
    text-align: center;
    color: white;
}

.page-header-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-diagonal p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-story {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: white;
    align-items: center;
}

.story-content-offset {
    flex: 1.2;
}

.story-content-offset h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-content-offset p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-image-float {
    flex: 1;
}

.story-image-float img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef2;
}

.values-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.values-asymmetric {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.value-block {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 350px;
}

.block-1 {
    transform: translateY(-1rem);
}

.block-2 {
    transform: translateY(1rem);
}

.block-3 {
    transform: translateY(-0.5rem);
}

.value-block h3 {
    font-size: 1.5rem;
    color: #5dade2;
    margin-bottom: 1rem;
}

.value-block p {
    color: #666;
    line-height: 1.7;
}

.approach-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: white;
    align-items: center;
}

.approach-image-left {
    flex: 1;
}

.approach-image-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef2;
}

.approach-content-right {
    flex: 1.2;
}

.approach-content-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.approach-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 5%;
    background: white;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.offset-right {
    padding-left: 5%;
}

.offset-left {
    padding-right: 5%;
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #e8eef2;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5dade2;
    margin: 1.5rem 0;
}

.pricing-note {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.note-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.note-box p {
    color: #666;
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 5%;
    background: white;
}

.contact-info-asymmetric {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.block-address {
    transform: translateY(-1rem);
}

.block-email {
    transform: translateY(1rem);
}

.block-hours {
    transform: translateY(0);
}

.contact-block h2 {
    font-size: 1.5rem;
    color: #5dade2;
    margin-bottom: 1rem;
}

.contact-block p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-note p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 6rem 5%;
    background: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: #5dade2;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

#selectedServiceInfo {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #5dade2;
    color: white;
}

.btn-primary:hover {
    background: #3498db;
}

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

.btn-secondary:hover {
    background: #5dade2;
    color: white;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        transform: none;
    }

    .hero-image-diagonal img {
        transform: none;
    }

    .hero-content-offset {
        padding: 3rem 5%;
    }

    .hero-content-offset h1 {
        font-size: 2rem;
    }

    .intro-offset,
    .about-story,
    .approach-section,
    .service-detail-block,
    .form-section-diagonal {
        flex-direction: column;
    }

    .trust-grid,
    .values-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        position: relative;
        top: 0;
        right: 0;
    }

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

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

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