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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #8BAFC7;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.cta-hero:hover {
    background-color: #234A5F;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: var(--bg-light);
}

.insight-block-asymmetric {
    padding: 120px 50px 80px;
    background-color: var(--bg-light);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.insight-text-offset {
    flex: 1.2;
    padding-right: 60px;
}

.insight-text-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.insight-text-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-image-overlay {
    flex: 0.8;
    position: relative;
    transform: translateY(40px);
}

.insight-image-overlay img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.story-flow {
    padding: 100px 50px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 820px;
    margin: 0 auto 0 120px;
}

.story-container h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 28px;
}

.services-irregular {
    padding: 100px 50px;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 700px;
    margin: 0 auto 70px 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-offset-1 {
    width: 85%;
    margin-left: 0;
}

.service-offset-2 {
    width: 80%;
    margin-left: auto;
    margin-right: 40px;
}

.service-offset-3 {
    width: 75%;
    margin-left: 100px;
}

.service-offset-4 {
    width: 82%;
    margin-left: auto;
}

.service-offset-5 {
    width: 78%;
    margin-left: 60px;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: var(--bg-light);
}

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

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

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

.btn-service {
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #234A5F;
}

.form-section-diagonal {
    padding: 100px 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.form-container-offset {
    max-width: 650px;
    margin: 0 auto 0 120px;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-container-offset h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-container-offset p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.form-notice {
    padding: 15px;
    background-color: #FFF3CD;
    border: 1px solid #FFE69C;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
    display: none;
}

.form-notice.active {
    display: block;
}

.btn-submit {
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background-color: #234A5F;
}

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

.testimonials-staggered {
    padding: 100px 50px;
    background-color: var(--bg-white);
}

.testimonials-staggered h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-left {
    width: 70%;
    margin-left: 0;
}

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

.testimonial-center {
    width: 75%;
    margin: 0 auto;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

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

.footer-asymmetric {
    background-color: #1A1A1A;
    color: #CCCCCC;
    padding: 70px 50px 30px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h3,
.footer-block h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-block p {
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

.footer-block ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 25px 50px;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-primary {
    padding: 12px 30px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.about-hero-diagonal {
    padding: 100px 50px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content-wrapper {
    flex: 1;
    max-width: 600px;
    margin-left: 60px;
}

.about-content-wrapper h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-image-overlay {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

.about-image-overlay img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: var(--bg-light);
}

.about-philosophy {
    padding: 80px 50px;
    background-color: var(--bg-light);
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.philosophy-text-left {
    flex: 1;
}

.philosophy-text-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.philosophy-image-right {
    flex: 0.9;
}

.philosophy-image-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.about-approach-staggered {
    padding: 100px 50px;
    background-color: var(--bg-white);
}

.about-approach-staggered h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.approach-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.approach-offset-1 {
    width: 80%;
    margin-left: 0;
}

.approach-offset-2 {
    width: 75%;
    margin-left: auto;
}

.approach-offset-3 {
    width: 85%;
    margin-left: 100px;
}

.approach-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.approach-item p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-team-irregular {
    padding: 100px 50px;
    background-color: var(--bg-light);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.team-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 35px;
    align-items: center;
}

.team-pos-1 {
    width: 85%;
    margin-left: 0;
}

.team-pos-2 {
    width: 80%;
    margin-left: auto;
}

.team-pos-3 {
    width: 75%;
    margin-left: 80px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

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

.about-values-diagonal {
    padding: 100px 50px;
    background-color: var(--bg-white);
}

.about-values-diagonal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-block {
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-about-offset {
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-content-about {
    max-width: 700px;
    margin: 0 auto 0 100px;
    text-align: center;
}

.cta-content-about h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content-about p {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 35px;
}

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

.btn-cta-large:hover {
    transform: translateY(-3px);
}

.services-hero-offset {
    padding: 100px 50px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-lead {
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 50px;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 50px;
}

.service-layout-1 {
    margin-left: 0;
}

.service-layout-2 {
    margin-left: auto;
    width: 90%;
    flex-direction: row-reverse;
}

.service-layout-3 {
    margin-left: 80px;
    width: 85%;
}

.service-layout-4 {
    margin-left: auto;
    width: 92%;
    flex-direction: row-reverse;
}

.service-layout-5 {
    margin-left: 60px;
    width: 88%;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

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

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

.services-cta-irregular {
    padding: 80px 50px;
    background-color: var(--primary-color);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto 0 120px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 30px;
}

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

.btn-cta-services:hover {
    transform: translateY(-3px);
}

.contact-hero-offset {
    padding: 100px 50px 60px;
    background-color: var(--bg-light);
}

.contact-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    margin-left: 80px;
}

.contact-lead {
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: 80px;
    line-height: 1.7;
}

.contact-info-asymmetric {
    padding: 80px 50px;
    background-color: var(--bg-white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.contact-details-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

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

.contact-image-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.contact-location-info {
    padding: 60px 50px;
    background-color: var(--bg-light);
}

.location-content {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.location-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.contact-cta-section {
    padding: 80px 50px;
    background-color: var(--primary-color);
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.contact-cta-content p {
    font-size: 17px;
    color: var(--bg-white);
    margin-bottom: 30px;
}

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

.btn-contact-cta:hover {
    transform: translateY(-3px);
}

.thanks-hero {
    padding: 100px 50px;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.steps-list {
    list-style: none;
    padding-left: 0;
}

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

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.thanks-additional-info {
    padding: 60px 50px;
    background-color: var(--bg-white);
}

.additional-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.additional-info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.additional-info-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.additional-info-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.additional-info-content a:hover {
    color: #234A5F;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234A5F;
}

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-image-right {
        margin-top: 0;
    }

    .insight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .insight-text-offset {
        padding-right: 0;
    }

    .insight-image-overlay {
        transform: translateY(0);
    }

    .story-container {
        margin: 0 auto;
    }

    .services-header-offset {
        margin: 0 auto 50px;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-offset {
        margin: 0 auto;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        width: 100%;
        margin-left: 0;
    }

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

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

    .about-hero-diagonal {
        flex-direction: column;
    }

    .about-content-wrapper {
        margin-left: 0;
    }

    .about-image-overlay {
        transform: translateY(0);
    }

    .philosophy-container {
        flex-direction: column;
        gap: 40px;
    }

    .approach-offset-1,
    .approach-offset-2,
    .approach-offset-3 {
        width: 100%;
        margin-left: 0;
    }

    .team-pos-1,
    .team-pos-2,
    .team-pos-3 {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        text-align: center;
    }

    .cta-content-about {
        margin: 0 auto;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 30px;
    }

    .service-layout-2,
    .service-layout-4 {
        flex-direction: column;
    }

    .service-layout-1,
    .service-layout-2,
    .service-layout-3,
    .service-layout-4,
    .service-layout-5 {
        width: 100%;
        margin-left: 0;
    }

    .services-cta-content {
        margin: 0 auto;
    }

    .contact-hero-offset h1,
    .contact-lead {
        margin-left: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-details-block {
        padding-left: 0;
    }

    .location-content {
        margin: 0 auto;
    }

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