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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #5d6d7e;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

.hero-asymmetric {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-text-offset {
    max-width: 600px;
    margin-left: 8%;
    color: #ffffff;
}

.hero-text-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-offset p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.intro-offset {
    padding: 120px 30px 80px;
    background-color: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 17px;
    color: #34495e;
}

.intro-block-right {
    flex: 1;
    padding-top: 60px;
}

.intro-block-right p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding-left: 15%;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-card-asymmetric {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-content-offset {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-offset h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content-offset p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 35px;
    background-color: #3498db;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateX(5px);
}

.form-section-offset {
    padding: 100px 30px;
    background-color: #2c3e50;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 20%;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 40px;
}

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

.form-header p {
    font-size: 16px;
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #e74c3c;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.why-choose-offset {
    padding: 120px 30px;
    background-color: #ffffff;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: center;
}

.benefits-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 0 1 calc(50% - 20px);
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.benefit-item.offset-top {
    margin-top: 40px;
}

.benefit-item.offset-bottom {
    margin-bottom: 40px;
}

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

.benefit-item p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2c2c2c;
    border-left: 3px solid #e74c3c;
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
}

.page-hero-small {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 80px 30px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: #ecf0f1;
}

.about-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-container.reverse {
    flex-direction: row-reverse;
}

.about-text-block {
    flex: 1;
}

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

.about-text-block p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-block {
    flex: 1;
    min-height: 400px;
}

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

.about-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

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

.value-item p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.about-experience {
    max-width: 1200px;
    margin: 80px auto 0;
    text-align: center;
}

.about-experience h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 0 1 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.services-page-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-page-content {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.contact-info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info-block .info-label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 5px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 30px;
}

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

.thanks-container p {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #2980b9;
}

.legal-page-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
    }

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

    .intro-container {
        flex-direction: column;
        gap: 30px;
    }

    .intro-block-right {
        padding-top: 0;
    }

    .service-card-asymmetric,
    .service-card-asymmetric.reverse {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin: 0 auto;
        padding: 40px 30px;
    }

    .benefit-item {
        flex: 0 1 100%;
    }

    .benefit-item.offset-top,
    .benefit-item.offset-bottom {
        margin: 0;
    }

    .about-container,
    .about-container.reverse {
        flex-direction: column;
    }

    .contact-info-container {
        flex-direction: column;
    }

    .thanks-container {
        padding: 40px 30px;
    }
}