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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2c7da0;
    --accent-color: #f77f00;
    --text-dark: #1e1e1e;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-disclosure {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    position: sticky;
    top: 37px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f1f5 100%);
}

.hero-content-offset {
    max-width: 550px;
    position: relative;
    z-index: 2;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 750px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: -20px 20px 60px rgba(26, 77, 109, 0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d66d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.3);
}

.intro-offset {
    padding: 100px 8%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: var(--bg-white);
}

.intro-narrow {
    flex: 1;
    max-width: 600px;
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-stat-cards {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.stat-card-offset {
    margin-left: 60px;
}

.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-light);
}

.process-visual {
    display: flex;
    gap: 60px;
    padding: 120px 7%;
    background: var(--bg-light);
    align-items: center;
}

.process-image-side {
    flex: 0.9;
}

.process-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.12);
}

.process-content-irregular {
    flex: 1.1;
}

.process-content-irregular h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.process-step {
    margin-bottom: 35px;
    padding-left: 70px;
    position: relative;
}

.step-indent {
    margin-left: 40px;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-asymmetric {
    padding: 120px 5%;
    background: var(--bg-white);
}

.services-header-side {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 5%;
}

.services-header-side h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header-side p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 25px 20px 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 25px 20px 25px;
}

.service-select {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    margin: 0 25px 25px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section-diagonal {
    padding: 100px 7%;
    background: linear-gradient(145deg, var(--bg-light) 0%, #dae9f0 100%);
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0.8;
    padding-top: 40px;
}

.form-intro-block h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.form-intro-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.form-container-offset {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 100px 8%;
    background: var(--bg-white);
}

.trust-content-centered {
    text-align: center;
    margin-bottom: 60px;
}

.trust-content-centered h2 {
    font-size: 46px;
    color: var(--primary-color);
}

.trust-blocks-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-block {
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.block-indent {
    margin-left: 80px;
}

.trust-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-overlap {
    padding: 120px 5%;
    background: var(--bg-light);
    position: relative;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    max-width: 650px;
}

.testimonial-left {
    margin-left: 5%;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 5%;
}

.testimonial-center {
    margin-left: 20%;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-final-asymmetric {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cta-content-float {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 12px;
    max-width: 600px;
    margin-left: 10%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-content-float h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content-float p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #d66d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.3);
}

.footer-irregular {
    background: var(--text-dark);
    color: white;
    padding: 80px 5% 30px 5%;
}

.footer-main {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 25px 5%;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #d66d00;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero-minimal {
    padding: 100px 8%;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero-minimal p {
    font-size: 20px;
    color: var(--text-light);
}

.story-section-irregular {
    padding: 100px 7%;
    background: var(--bg-white);
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-offset {
    flex: 0.9;
}

.story-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.1);
}

.story-content-narrow {
    flex: 1.1;
}

.story-content-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-content-narrow p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 100px 7%;
    background: var(--bg-light);
}

.values-header-side {
    max-width: 650px;
    margin-bottom: 50px;
    margin-left: 5%;
}

.values-header-side h2 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.values-header-side p {
    font-size: 18px;
    color: var(--text-light);
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    border-top: 4px solid var(--secondary-color);
}

.card-shifted {
    margin-top: 50px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-staggered {
    padding: 100px 7%;
    background: var(--bg-white);
}

.team-section-staggered h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
}

.member-offset {
    margin-top: 60px;
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member > p {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    padding: 100px 7%;
    background: var(--bg-light);
}

.approach-content-centered {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.approach-content-centered h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-content-centered p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-blocks-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-block {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
}

.block-indent-right {
    margin-left: 50px;
}

.approach-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.approach-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.stats-full-width {
    padding: 100px 7%;
    background: var(--primary-color);
    color: white;
}

.stats-full-width h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
}

.stats-row-irregular {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-big {
    text-align: center;
    flex: 0 1 220px;
}

.stat-offset-down {
    margin-top: 50px;
}

.stat-value {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-desc {
    display: block;
    font-size: 16px;
    line-height: 1.5;
}

.cta-page-bottom {
    padding: 80px 7%;
    background: var(--bg-light);
    text-align: center;
}

.cta-page-bottom h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-page-bottom p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.services-detail-asymmetric {
    padding: 80px 5%;
    background: var(--bg-white);
}

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

.card-left {
    flex-direction: row;
}

.card-right {
    flex-direction: row-reverse;
}

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

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.comparison-section {
    padding: 100px 7%;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.comparison-col {
    background: var(--bg-white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
}

.comparison-header {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.comparison-highlight {
    background: #e8f4f8;
    color: var(--text-dark);
    font-weight: 600;
}

.process-timeline {
    padding: 100px 7%;
    background: var(--bg-white);
}

.process-timeline h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.timeline-irregular {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.timeline-left {
    flex-direction: row;
}

.timeline-right {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.timeline-item > div:last-child {
    flex: 1;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-duration {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-section-offset {
    padding: 100px 7%;
    background: var(--bg-light);
}

.faq-section-offset h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-blocks-irregular {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
}

.faq-offset {
    margin-left: 60px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services-bottom {
    padding: 100px 7%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-services-bottom p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-layout-asymmetric {
    padding: 80px 7%;
    background: var(--bg-white);
    display: flex;
    gap: 70px;
}

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

.contact-info-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-visual-offset {
    flex: 0.9;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-cta-section {
    padding: 80px 7%;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-cta-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.map-section {
    padding: 80px 7%;
    background: var(--bg-white);
}

.map-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.map-info-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-info-item {
    flex: 0 1 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.map-info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.map-info-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 7%;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px auto;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.next-step p {
    flex: 1;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 7%;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--text-dark);
}

.legal-contact {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.legal-contact h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-contact p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

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

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .intro-offset,
    .process-visual,
    .form-section-diagonal,
    .story-section-irregular,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .footer-main {
        flex-wrap: wrap;
    }

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

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 38px;
    }

    .floating-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .block-indent,
    .block-indent-right,
    .faq-offset,
    .member-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

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