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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.floating-nav {
    position: fixed;
    top: 60px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    max-width: 580px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.hero-image-right {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #d5dbdb;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.intro-asymmetric {
    display: flex;
    padding: 120px 60px 120px 140px;
    background-color: #ffffff;
    align-items: center;
}

.intro-block {
    flex: 1.2;
    padding-right: 80px;
}

.intro-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.intro-visual {
    flex: 0.8;
    background-color: #bdc3c7;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.problem-amplification {
    background-color: #34495e;
    color: white;
    padding: 100px 60px 100px 220px;
}

.problem-text-offset {
    max-width: 700px;
}

.problem-text-offset h2 {
    font-size: 38px;
    margin-bottom: 35px;
    font-weight: 700;
}

.problem-list {
    list-style: none;
    margin-bottom: 30px;
}

.problem-list li {
    font-size: 19px;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.problem-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.problem-text-offset p {
    font-size: 18px;
    line-height: 1.7;
}

.services-cards-irregular {
    padding: 100px 60px;
    background-color: #fafafa;
}

.section-title-left {
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
    padding-left: 40px;
    font-weight: 700;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    position: relative;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.card-offset-5 {
    margin-top: -20px;
    width: 100%;
}

.card-image {
    height: 260px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-building {
    display: flex;
    padding: 120px 60px;
    background-color: #ffffff;
    align-items: center;
}

.trust-content-right {
    flex: 1;
    padding-left: 80px;
    order: 2;
}

.trust-content-right h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-content-right > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

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

.principle-item {
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.principle-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.principle-item p {
    font-size: 16px;
    color: #34495e;
}

.trust-image-left {
    flex: 1;
    order: 1;
    padding-right: 80px;
    background-color: #bdc3c7;
}

.trust-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-inline {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.testimonials-inline h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 8px;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-asymmetric {
    padding: 120px 60px 120px 180px;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 100px;
}

.form-container-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    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;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
    font-weight: 700;
}

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

.footer-asymmetric {
    background-color: #2c3e50;
    color: white;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col-1 {
    flex: 1.5;
}

.footer-col-1 p {
    font-size: 16px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col-2,
.footer-col-3 {
    flex: 1;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.cookie-reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .intro-asymmetric,
    .trust-building {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-block,
    .trust-content-right {
        padding-right: 0;
        padding-left: 0;
    }

    .trust-image-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}