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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7d;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #2c5f7d;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    margin-bottom: 80px;
}

.hero-image-block {
    width: 65%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    max-width: 500px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    margin: 0;
}

.hero-text-offset {
    width: 35%;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f4f7f9;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f7d;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234a5f;
}

.offset-intro {
    margin-bottom: 100px;
}

.split-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5f7d;
}

.content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.image-right-float {
    flex: 1;
    transform: translateY(-40px);
}

.image-right-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-preview {
    padding: 80px 0;
    background-color: #fafbfc;
}

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

.section-header-offset h2 {
    font-size: 38px;
    color: #2c5f7d;
    max-width: 600px;
}

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

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

.card-large {
    flex: 1 1 calc(50% - 15px);
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
}

.card-small {
    flex: 1 1 calc(30% - 15px);
}

.card-visual {
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

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

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

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

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    flex-grow: 1;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 16px;
}

.select-service {
    background-color: #3a6f8a;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2c5f7d;
}

.contact-form-section {
    padding: 100px 0;
}

.form-wrapper-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 350px;
}

.form-intro h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.form-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7d;
}

.btn-submit {
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.visual-break {
    margin: 80px 0;
}

.image-full-bleed {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.image-full-bleed img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-caption {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    margin: 40px;
    max-width: 500px;
}

.image-caption p {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.footer {
    background-color: #1a2332;
    color: #b8c5d6;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.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: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2d3a4d;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #8194a8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero-offset {
    padding: 80px 0 40px;
    background-color: #f4f7f9;
}

.page-hero-offset h1 {
    font-size: 48px;
    color: #2c5f7d;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
}

.about-content {
    padding: 80px 0;
}

.content-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.text-block-float h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5f7d;
}

.text-block-float p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.image-offset-right {
    flex: 1;
    transform: translateX(40px);
}

.image-offset-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.values-asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-item.item-large {
    flex: 1 1 55%;
}

.value-item.item-medium {
    flex: 1 1 40%;
}

.value-item.item-small {
    flex: 1 1 30%;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-section {
    padding: 80px 0;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c5f7d;
}

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

.approach-visual {
    flex: 0.8;
}

.stats-block {
    background-color: #2c5f7d;
    padding: 40px;
    border-radius: 8px;
}

.stat-item {
    margin-bottom: 32px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #d4e2ed;
}

.cta-section-offset {
    padding: 100px 0;
    background-color: #f4f7f9;
}

.cta-asymmetric {
    max-width: 700px;
    margin-left: 80px;
}

.cta-asymmetric h2 {
    font-size: 38px;
    color: #2c5f7d;
    margin-bottom: 20px;
}

.cta-asymmetric p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #2c5f7d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #234a5f;
}

.services-detailed {
    padding: 60px 0;
}

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

.service-detail-item.layout-left .service-detail-content {
    flex: 1;
    order: 1;
}

.service-detail-item.layout-left .service-detail-image {
    flex: 1;
    order: 2;
}

.service-detail-item.layout-right .service-detail-image {
    flex: 1;
    order: 1;
}

.service-detail-item.layout-right .service-detail-content {
    flex: 1;
    order: 2;
}

.service-detail-item.layout-center {
    justify-content: center;
}

.service-detail-content-center {
    max-width: 800px;
}

.service-detail-content h2,
.service-detail-content-center h2 {
    font-size: 32px;
    color: #2c5f7d;
    margin-bottom: 20px;
}

.service-detail-content p,
.service-detail-content-center p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #5a6c7d;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 20px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-layout-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 22px;
    color: #2c5f7d;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-section {
    padding: 60px 0;
    background-color: #f4f7f9;
}

.info-asymmetric {
    max-width: 700px;
    margin-left: 60px;
}

.info-asymmetric h2 {
    font-size: 32px;
    color: #2c5f7d;
    margin-bottom: 24px;
}

.info-asymmetric p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.thanks-hero {
    padding: 100px 0;
}

.thanks-hero .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content-asymmetric {
    flex: 1.2;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #f4f7f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #5a6c7d;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5f7d;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234a5f;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f7d;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c5f7d;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c5f7d;
    color: #ffffff;
}

.thanks-visual {
    flex: 0.8;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.next-steps-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.next-steps-section h2 {
    font-size: 36px;
    color: #2c5f7d;
    text-align: center;
    margin-bottom: 60px;
}

.steps-layout {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 0 1 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5f7d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

.legal-page {
    padding: 60px 0 80px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.update-date {
    margin-top: 40px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

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

.gdpr-table thead,
.cookie-table thead {
    background-color: #f4f7f9;
}

.gdpr-table th,
.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #dfe4ea;
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e8ecef;
    color: #34495e;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-block,
    .hero-text-offset {
        width: 100%;
    }

    .split-asymmetric,
    .content-asymmetric,
    .form-wrapper-asymmetric,
    .approach-split,
    .contact-layout-asymmetric,
    .service-detail-item {
        flex-direction: column;
    }

    .services-asymmetric-grid .service-card {
        flex: 1 1 100%;
    }

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

    .image-right-float,
    .image-offset-right {
        transform: none;
    }

    .thanks-hero .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .values-asymmetric-layout .value-item {
        flex: 1 1 100%;
    }

    .steps-layout {
        flex-direction: column;
        align-items: center;
    }
}