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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

.ad-notice {
    background: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: #1a252f;
    color: #ecf0f1;
    padding: 80px 30px 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #3498db;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 20px;
}

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

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

.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.nav-footer a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 13px;
}

.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

.hero-asymmetric {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #2c3e50;
}

.hero-image-offset {
    position: absolute;
    right: -50px;
    top: 60px;
    width: 65%;
    height: 75%;
    background: #34495e;
}

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

.hero-text-overlay {
    position: absolute;
    left: 60px;
    bottom: 80px;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.97);
    padding: 50px;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-text-overlay h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a252f;
}

.hero-text-overlay p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
}

.offset-intro {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    background: #fff;
}

.intro-block-left {
    flex: 1;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.intro-visual-right {
    flex: 1;
    background: #ecf0f1;
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-grid {
    background: #f8f9fa;
    padding: 90px 60px 120px;
}

.section-header-diagonal {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 30px;
    border-left: 6px solid #3498db;
}

.section-header-diagonal h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-diagonal p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    width: calc(50% - 20px);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card.offset-2 {
    margin-top: 60px;
}

.service-card.offset-3 {
    margin-top: 30px;
}

.service-card.offset-4 {
    margin-top: 80px;
}

.service-card.offset-5 {
    margin-top: 20px;
}

.service-card.offset-6 {
    margin-top: 50px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #ecf0f1;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 20px;
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 25px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background: #3498db;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-diagonal {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 100px 60px;
    color: #fff;
    position: relative;
}

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

.trust-blocks {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
}

.form-section-offset {
    display: flex;
    background: #fff;
    min-height: 600px;
}

.form-container {
    flex: 1.2;
    padding: 80px 60px;
    background: #f8f9fa;
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
}

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

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

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

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 40px;
    background: #e74c3c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.form-visual {
    flex: 1;
    background: #ecf0f1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    background: #ecf0f1;
    padding: 50px 60px;
    border-top: 3px solid #bdc3c7;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-blocks {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 8px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ecf0f1;
    padding: 25px 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.thanks-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 240px);
    padding: 80px 60px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-content .selected-service {
    background: #ecf0f1;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.thanks-content .selected-service strong {
    color: #2c3e50;
    font-size: 18px;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

.about-intro {
    background: #fff;
    padding: 80px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.3;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image {
    flex: 1;
    background: #ecf0f1;
}

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

.values-section {
    background: #f8f9fa;
    padding: 80px 60px;
}

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

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

.value-item {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.services-list-page {
    background: #fff;
    padding: 80px 60px;
}

.services-list-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-list-page > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 700px;
}

.contact-page {
    background: #fff;
    padding: 80px 60px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
}

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

.contact-map {
    flex: 1;
    background: #ecf0f1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.legal-page {
    background: #fff;
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 18px;
}

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

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
        padding: 60px 20px 20px;
    }

    .main-content {
        margin-left: 200px;
    }

    .service-card {
        width: 100%;
    }

    .trust-blocks {
        flex-direction: column;
    }

    .form-section-offset {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 30px 20px;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-text-overlay {
        position: static;
        max-width: 100%;
        margin: 20px;
    }

    .offset-intro,
    .contact-grid {
        flex-direction: column;
    }

    .footer-blocks {
        flex-direction: column;
        gap: 30px;
    }

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