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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    min-width: 250px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-offset {
    margin-right: auto;
}

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

.ad-disclosure {
    position: absolute;
    top: 5px;
    right: 40px;
}

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-split {
    display: flex;
    gap: 60px;
    margin-top: 10px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-left a,
.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #3498db;
}

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

.hero-image-offset {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-color: #bdc3c7;
}

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

.hero-text-float {
    position: absolute;
    left: 8%;
    top: 30%;
    max-width: 550px;
    background-color: #fff;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 10;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.intro-block-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.intro-block-right {
    flex: 1;
    background-color: #d5dbdb;
}

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

.services-creative {
    padding: 100px 40px;
    background-color: #fff;
}

.services-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding-left: 120px;
}

.services-header-diagonal h2 {
    font-size: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-card {
    width: calc(33.333% - 27px);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

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

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

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

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

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

.service-card.offset-bottom-alt {
    margin-top: 40px;
}

.service-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d5dbdb;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
}

.trust-diagonal {
    background-color: #ecf0f1;
    padding: 120px 40px;
}

.trust-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
}

.trust-content-offset h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-blocks {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.testimonials-offset {
    padding: 100px 40px;
    background-color: #fff;
}

.section-title-diagonal {
    max-width: 1400px;
    margin: 0 auto 70px;
    padding-left: 100px;
    font-size: 36px;
    color: #2c3e50;
}

.testimonials-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #3498db;
}

.testimonial-card.card-left {
    width: calc(50% - 20px);
    margin-left: 0;
}

.testimonial-card.card-right {
    width: calc(50% - 20px);
    margin-left: auto;
    margin-top: 40px;
}

.testimonial-card.card-center {
    width: calc(60% - 20px);
    margin: 0 auto;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

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

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-container-offset h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-top: 1px solid #e0e0e0;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: center;
}

.footer-asymmetric {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-block {
    flex: 1;
}

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-center h4,
.footer-right h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-center ul,
.footer-right ul {
    list-style: none;
}

.footer-center ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-center a,
.footer-right a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #fff;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

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

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

.thanks-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.service-selected {
    font-weight: 600;
    color: #3498db;
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.contact-page-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-page-header {
    margin-bottom: 60px;
}

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

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

.contact-info-layout {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-info-block {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.about-hero {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
    max-width: 800px;
}

.about-hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 700px;
}

.about-content-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.about-content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-block {
    width: 100%;
    height: 400px;
    margin: 60px 0;
    background-color: #d5dbdb;
}

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

.services-page-header {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 40px;
}

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

.services-page-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
}

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

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

.legal-update {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 20px);
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-info-layout {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-text-float {
        left: 5%;
        right: 5%;
        max-width: none;
        padding: 40px 30px;
    }

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

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

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

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

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