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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 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;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-offset-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
}

.hero-text-block {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 60px;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtext {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.hero-image-overlay {
    position: absolute;
    top: 50px;
    right: 40px;
    width: 55%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #ecf0f1;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 2;
    padding-left: 80px;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.8;
    color: #2c3e50;
}

.intro-side-accent {
    flex: 1;
}

.accent-box {
    background-color: #3498db;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.accent-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.story-section {
    background-color: #ffffff;
    padding: 100px 0;
}

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

.story-image-left {
    flex: 1;
    margin-left: -40px;
    background-color: #ecf0f1;
}

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

.story-content-right {
    flex: 1;
    padding-right: 60px;
}

.story-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.insight-diagonal {
    background-color: #ecf0f1;
    padding: 120px 0;
    margin: 80px 0;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.insight-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-left: 0;
}

.insight-card.offset-top {
    margin-left: 120px;
    margin-top: -20px;
}

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

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

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.testimonial-offset {
    flex: 2;
}

.testimonial {
    background-color: #ffffff;
    padding: 50px;
    border-left: 5px solid #3498db;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

.author {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
}

.trust-image-right {
    flex: 1;
    background-color: #ecf0f1;
}

.trust-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.services-reveal {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.services-header-offset {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
    text-align: center;
}

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

.services-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

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

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

.service-card.large {
    width: 100%;
}

.service-card.medium {
    width: 85%;
}

.service-card.small {
    width: 70%;
}

.service-card.offset-right {
    align-self: flex-end;
}

.service-card.offset-left {
    align-self: flex-start;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.form-intro-side {
    flex: 1;
    padding-top: 40px;
}

.form-intro-side h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-intro-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.form-block {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.selected-service-box {
    background-color: #e8f5e9;
    border: 1px solid #27ae60;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: none;
}

.selected-service-box.active {
    display: block;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta-diagonal {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 40px;
    margin: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.7;
}

.main-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 0 20px 0;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

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

.page-hero {
    background-color: #ecf0f1;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    color: #34495e;
}

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

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content-wide {
    flex: 2;
}

.about-content-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image-offset {
    flex: 1;
    background-color: #ecf0f1;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.mission-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.values-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    width: 85%;
}

.value-card.offset-vertical {
    align-self: flex-end;
    margin-top: -20px;
}

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

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

.team-asymmetric {
    background-color: #ecf0f1;
    padding: 100px 0;
}

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

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

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.approach-blocks {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.approach-item.offset-down {
    align-self: flex-end;
    margin-top: -30px;
}

.approach-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.approach-item h3 {
    font-size: 24px;
    margin: 25px 35px 15px 35px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 35px 35px 35px;
    color: #34495e;
}

.impact-numbers {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.numbers-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.stats-offset {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-block {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-block.offset-right {
    margin-top: 40px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 15px;
}

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

.services-intro-offset {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-intro-container {
    padding: 0 80px;
}

.services-lead {
    font-size: 22px;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
}

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

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

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #34495e;
}

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

.service-price-block {
    margin-top: 30px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #2980b9;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section-services {
    background-color: #ecf0f1;
    padding: 80px 40px;
    text-align: center;
}

.cta-content-offset {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content-offset p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-btn-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-info-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

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

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

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

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

.contact-image-offset {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.contact-approach {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.approach-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.offices-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.offices-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

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

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

.office-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #34495e;
}

.office-description {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.visit-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.visit-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.visit-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

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

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

.thanks-content {
    flex: 2;
}

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

.thanks-lead {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.thanks-next-steps {
    margin: 40px 0;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: #34495e;
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3498db;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.thanks-image {
    flex: 1;
    background-color: #ecf0f1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.legal-container {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

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

.legal-container ul {
    margin: 15px 0 15px 30px;
}

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

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

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

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

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

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

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

.cookie-table td {
    font-size: 14px;
    color: #34495e;
}

@media (max-width: 1024px) {
    .hero-text-block {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlay {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        margin-top: 30px;
    }

    .intro-offset,
    .story-container,
    .trust-section,
    .form-container-asymmetric,
    .about-container,
    .contact-container,
    .thanks-container,
    .service-full-block {
        flex-direction: column;
    }

    .service-card.medium,
    .service-card.small {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .intro-narrow {
        padding-left: 0;
    }

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

    .stats-offset {
        flex-direction: column;
    }
}