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

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

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

.brand-offset {
    transform: translateX(-20px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 2rem;
    align-items: center;
    transform: translateY(5px);
}

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

.nav-floating a:hover {
    color: #1a5490;
}

.ad-disclosure {
    background-color: #f0f4f8;
    color: #5a6c7d;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f0f4f8;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 550px;
    margin-left: 8%;
    margin-top: 3rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-cta-floating {
    margin-top: 2.5rem;
    transform: translateX(40px);
}

.cta-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.cta-primary:hover {
    background-color: #134073;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 85%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #e8ecf0;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    padding-left: 5%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-image-aside {
    flex: 0.8;
    transform: translateY(30px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8ecf0;
}

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

.services-asymmetric {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 2rem;
    margin: 4rem 0;
}

.section-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 4rem;
    transform: translateX(-3%);
}

.section-header-diagonal h2 {
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.section-header-diagonal p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

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

.service-medium {
    flex: 1 1 calc(55% - 1rem);
    min-width: 320px;
}

.service-small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
}

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

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.price {
    font-size: 1.5rem;
    color: #1a5490;
    font-weight: 700;
    margin: 1.5rem 0;
}

.select-service {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #134073;
    transform: translateX(3px);
}

.form-section-diagonal {
    background-color: #1a5490;
    padding: 5rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    color: #e8f1f8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    background-color: #f0f4f8;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1a5490;
}

.selected-service-display p {
    color: #5a6c7d;
    font-weight: 600;
}

.btn-submit {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.trust-content-stacked h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.trust-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 2.5rem 2rem;
    margin: 4rem 0;
}

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

.disclaimer-content p {
    color: #5a4a1f;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.about-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    transform: translateX(5%);
}

.about-text-irregular {
    max-width: 700px;
}

.about-text-irregular h1 {
    font-size: 3rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.4rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.story-layout-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-block {
    flex: 0.9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    background-color: #e8ecf0;
}

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

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

.story-text-block h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.values-diagonal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-diagonal h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-grid-offset {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-offset {
    transform: translateY(30px);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section {
    background-color: #f0f4f8;
    padding: 5rem 2rem;
}

.approach-content-stacked {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-text-wide {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-text-wide h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text-wide p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.approach-image-wide {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8ecf0;
}

.approach-image-wide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.step-item h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.cta-section-offset {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.cta-content-irregular {
    background: linear-gradient(135deg, #1a5490 0%, #134073 100%);
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    transform: translateX(-3%);
    box-shadow: 0 10px 40px rgba(26, 84, 144, 0.2);
}

.cta-content-irregular h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-irregular p {
    font-size: 1.2rem;
    color: #e8f1f8;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5490;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.services-header-diagonal {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    transform: translateX(4%);
}

.services-header-diagonal h1 {
    font-size: 3rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-intro {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-layout-left .service-detail-content {
    order: 2;
}

.service-layout-right .service-detail-image {
    order: 2;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: #e8ecf0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f4f8;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.price-label {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2rem;
    color: #1a5490;
    font-weight: 700;
}

.select-service-btn {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #134073;
    transform: translateX(3px);
}

.contact-header-offset {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    transform: translateX(-4%);
}

.contact-header-offset h1 {
    font-size: 3rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-intro {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.contact-content-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.email-display {
    background-color: #f0f4f8;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    display: inline-block;
    font-family: monospace;
}

.contact-image-offset {
    flex: 0.9;
    transform: translateY(30px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8ecf0;
}

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

.contact-note {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.note-content {
    background-color: #fff8e1;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
}

.note-content h2 {
    font-size: 1.6rem;
    color: #5a4a1f;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.note-content p {
    color: #5a4a1f;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.note-content a {
    color: #1a5490;
    font-weight: 600;
}

.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-content {
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e8f8f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-confirmation p {
    color: #1e8449;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.selected-service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step p {
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a5490;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.legal-page {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        min-height: auto;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        border-radius: 12px;
    }

    .intro-offset,
    .story-layout-asymmetric,
    .contact-content-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

    .nav-floating {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .trust-blocks,
    .values-grid-offset,
    .approach-steps,
    .steps-list {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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