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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #34495e;
}

.main-header {
    background-color: #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    font-style: italic;
    max-width: 200px;
    line-height: 1.3;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.6));
    display: flex;
    align-items: center;
}

.hero-text-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    margin-left: 15%;
}

.hero-title {
    font-size: 56px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 600px;
    line-height: 1.5;
}

.intro-asymmetric {
    padding: 80px 40px;
}

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

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

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

.intro-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.intro-block-right {
    flex: 1;
    height: 400px;
    margin-right: -40px;
    overflow: hidden;
}

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

.services-preview {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
    margin-left: 8%;
}

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

.services-header-offset p {
    font-size: 19px;
    color: #5d6d7e;
    max-width: 600px;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 500px;
}

.service-card:not(.service-large):not(.service-offset):not(.service-featured) {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.service-offset {
    flex: 1 1 calc(45% - 15px);
    min-width: 400px;
    margin-top: -50px;
}

.service-featured {
    flex: 1 1 calc(55% - 15px);
    min-width: 450px;
}

.service-visual {
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.btn-service {
    padding: 12px 28px;
    background-color: #ffffff;
    color: #2c3e50;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.value-section {
    padding: 100px 40px;
}

.value-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.value-image-block {
    flex: 1;
    height: 500px;
    margin-left: -40px;
    overflow: hidden;
}

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

.value-text-block {
    flex: 1;
    padding-right: 80px;
}

.value-text-block h3 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.value-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-right: 15%;
}

.form-intro {
    margin-bottom: 40px;
    color: #ffffff;
}

.form-intro h3 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #ecf0f1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    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: 14px 35px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background-color: #34495e;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #ecf0f1;
}

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

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

@media (max-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }

    .intro-container {
        flex-direction: column;
    }

    .intro-block-left {
        padding-left: 0;
    }

    .intro-block-right {
        margin-right: 0;
        width: 100%;
    }

    .value-container-asymmetric {
        flex-direction: column-reverse;
    }

    .value-image-block {
        margin-left: 0;
        width: 100%;
    }

    .value-text-block {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text-offset {
        margin-left: 0;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        min-width: auto;
    }

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

    .form-container-offset {
        margin-right: auto;
    }
}