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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

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

.btn-secondary:hover {
    background: #ffffff;
    color: #2c3e50;
}

.nav-asymmetric {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    margin-right: auto;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    background: #f39c12;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
}

.hero-asymmetric {
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: #ecf0f1;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 600px;
}

.hero-text-block {
    flex: 0 0 55%;
    z-index: 2;
    padding-right: 3rem;
    transform: translateX(10%);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.hero-image-overlay {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    height: 70%;
    transform: rotate(-3deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-narrow {
    flex: 0 0 45%;
    transform: translateX(-8%);
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.intro-image-right {
    flex: 1;
    transform: translateY(3rem);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
    background: #bdc3c7;
}

.intro-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-asymmetric {
    background: #f8f9fa;
    padding: 6rem 2rem;
    position: relative;
}

.services-header-offset {
    max-width: 600px;
    margin-left: 15%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #555;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

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

.card-large {
    flex: 0 0 calc(50% - 1rem);
    min-width: 320px;
}

.card-medium {
    flex: 0 0 calc(40% - 1rem);
    min-width: 300px;
}

.card-small {
    flex: 0 0 calc(30% - 1rem);
    min-width: 280px;
    transform: translateY(2rem);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #bdc3c7;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    flex: 1;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ecf0f1;
    border-radius: 6px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-right: 0.3rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-period {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-left: 0.3rem;
}

.service-cta {
    display: block;
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.contact-form-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.form-container-asymmetric {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 20px -20px 60px rgba(0, 0, 0, 0.1);
    transform: translateX(5%);
    max-width: 700px;
}

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

.form-intro p {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 1.2rem 3rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.why-choose-section {
    background: #2c3e50;
    padding: 6rem 2rem;
}

.why-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.why-content-offset img {
    flex: 0 0 45%;
    border-radius: 8px;
    transform: translateX(-10%) rotate(2deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.3);
    background: #7f8c8d;
}

.why-text {
    flex: 1;
    color: #ffffff;
}

.why-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.4rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #2c3e50;
    transform: translateY(-3px);
}

.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-block p {
    line-height: 1.8;
    color: #b2bec3;
}

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

.footer-block ul li {
    margin-bottom: 0.8rem;
}

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

.footer-block ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
}

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-offset {
    flex: 1;
    transform: translateX(8%);
}

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

.story-text-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image-right {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
    background: #bdc3c7;
}

.story-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.values-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:nth-child(2) {
    transform: translateY(2rem);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.value-card p {
    line-height: 1.7;
    color: #555;
}

.team-section-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-image-left {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.15);
    background: #bdc3c7;
}

.team-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.certifications-section {
    background: #ecf0f1;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cert-content {
    max-width: 800px;
    margin: 0 auto;
}

.cert-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.cta-about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detail-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.detail-image-offset {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
    background: #bdc3c7;
}

.detail-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.detail-content {
    flex: 1;
}

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

.detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.price-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-from {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-right: 0.3rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-unit {
    font-size: 1rem;
    color: #7f8c8d;
    margin-left: 0.3rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.service-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-info-blocks {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info-block-offset {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-block-offset:nth-child(2) {
    transform: translateY(2rem);
}

.info-block-offset h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block-offset p {
    line-height: 1.8;
    color: #555;
}

.emergency-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e74c3c;
    color: #e74c3c;
    font-weight: 600;
}

.contact-map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #bdc3c7;
}

.contact-map-placeholder img {
    width: 100%;
    height: 400px;
    display: block;
}

.contact-additional {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.additional-content-offset {
    transform: translateX(5%);
}

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

.additional-content-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-cta-section {
    background: #3498db;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-content {
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.thanks-next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

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

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

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-offset-content {
        flex-direction: column;
    }

    .hero-text-block {
        flex: 1;
        transform: none;
        padding-right: 0;
    }

    .hero-image-overlay {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .intro-offset,
    .about-story-asymmetric,
    .team-section-offset,
    .service-detail-card {
        flex-direction: column;
    }

    .intro-narrow,
    .story-text-offset {
        transform: none;
    }

    .why-content-offset {
        flex-direction: column;
    }

    .why-content-offset img {
        transform: none;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 0 0 100%;
        transform: none;
    }

    .form-container-asymmetric {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .services-header-offset h2 {
        font-size: 2rem;
    }

    .intro-narrow h2,
    .story-text-offset h2 {
        font-size: 2rem;
    }

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