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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    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;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

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

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

.nav-asymmetric {
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-zone {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-offset {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
}

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

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

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

.intro-left p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.intro-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.services-irregular {
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-bottom: 60px;
    margin-left: 120px;
}

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

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

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.card-large {
    flex-basis: calc(60% - 15px);
}

.card-offset {
    flex-basis: calc(40% - 15px);
    margin-top: 40px;
}

.card-small {
    flex-basis: calc(33.333% - 20px);
}

.card-medium {
    flex-basis: calc(40% - 15px);
    margin-top: -30px;
}

.card-wide {
    flex-basis: calc(60% - 15px);
}

.card-compact {
    flex-basis: calc(33.333% - 20px);
    margin-top: 20px;
}

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

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin: 0 24px 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 24px;
}

.trust-diagonal {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 100px 40px;
    margin: 140px 0;
    transform: skewY(-2deg);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.trust-content h2 {
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.trust-items {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #ecf0f1;
}

.form-section-offset {
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-header-left {
    flex: 1;
    padding-top: 20px;
}

.form-header-left h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-header-left p {
    font-size: 18px;
    color: #546e7a;
}

.form-container-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-left: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dce0e3;
    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: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-block {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.disclaimer-text {
    font-size: 14px;
    color: #546e7a;
    line-height: 1.8;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    text-align: center;
}

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

.page-header-diagonal {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 80px 40px;
    text-align: center;
    transform: skewY(-2deg);
    margin-bottom: 80px;
}

.page-header-diagonal h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 12px;
    transform: skewY(2deg);
}

.page-header-diagonal p {
    font-size: 20px;
    color: #ecf0f1;
    transform: skewY(2deg);
}

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

.story-block-left {
    flex: 1;
}

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

.story-block-left p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-right {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.story-image-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.values-offset {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

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

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.team-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.team-irregular h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    margin-left: 80px;
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
    padding-right: 40px;
}

.approach-text p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    margin-right: 80px;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-about,
.cta-services,
.cta-contact {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 16px;
    color: #546e7a;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.btn-service {
    display: inline-block;
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-offset {
    flex: 1;
    margin-top: 40px;
}

.contact-info-offset h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

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

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.map-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.map-section p {
    font-size: 17px;
    color: #546e7a;
    text-align: center;
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #7f8c8d;
}

.thanks-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content > p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
}

.thanks-info {
    padding: 24px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    margin-bottom: 40px;
    border-radius: 4px;
}

.thanks-info p {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next ul li {
    font-size: 17px;
    color: #546e7a;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.thanks-next ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    margin-top: 40px;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.legal-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-staggered,
    .form-section-offset,
    .about-story,
    .approach-content,
    .service-detail-item,
    .contact-layout,
    .thanks-section {
        flex-direction: column;
        gap: 40px;
    }

    .service-reverse {
        flex-direction: column;
    }

    .services-grid-asymmetric .service-card {
        flex-basis: 100%;
        margin-top: 0;
    }

    .trust-items,
    .values-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

    .section-header-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 16px 20px;
    }

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

    .brand-zone {
        flex-direction: column;
        gap: 10px;
    }

    .hero-offset,
    .intro-staggered,
    .services-irregular,
    .form-section-offset,
    .about-story,
    .values-offset,
    .team-irregular,
    .services-detail,
    .contact-layout,
    .thanks-section,
    .legal-page {
        padding: 0 20px;
        margin: 40px auto;
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .form-container-right {
        padding: 30px;
        margin-left: 0;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}