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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #3a8fb7;
    --accent-color: #e8955e;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    display: flex;
    min-height: 100vh;
}

.ad-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    z-index: 1001;
    border-bottom: 1px solid #ffeaa7;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 30px;
    width: 240px;
    height: calc(100vh - 30px);
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-nav .brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.sidebar-nav ul {
    list-style: none;
    flex-grow: 1;
}

.sidebar-nav ul li {
    margin-bottom: 15px;
}

.sidebar-nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.sidebar-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav .nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.sidebar-nav .nav-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.sidebar-nav .nav-footer a:hover {
    color: white;
}

.content-area {
    margin-left: 240px;
    margin-top: 30px;
    flex-grow: 1;
    padding: 0;
    width: calc(100% - 240px);
}

section {
    padding: 60px 40px;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-text-block {
    flex: 0 0 50%;
    padding-right: 60px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text-block .lead-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-visual {
    flex: 0 0 40%;
    margin-left: auto;
}

.hero-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(3deg);
}

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    padding: 80px 40px 80px 90px;
    background-color: var(--bg-white);
}

.text-column-left {
    flex: 0 0 55%;
    padding-right: 50px;
}

.text-column-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.text-column-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.stat-box-right {
    flex: 0 0 35%;
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    transform: translateY(30px);
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
}

.stat .number {
    font-size: 64px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat .label {
    font-size: 16px;
    display: block;
}

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

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: var(--text-light);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.insight-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px;
    background-color: white;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.services-scattered {
    padding: 80px 40px;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: var(--primary-color);
}

.service-card-left,
.service-card-right,
.service-card-center {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.service-card-left {
    margin-left: 40px;
    margin-right: 120px;
}

.service-card-right {
    margin-left: 120px;
    margin-right: 40px;
    flex-direction: row-reverse;
}

.service-card-center {
    justify-content: center;
    margin: 80px 100px;
}

.service-icon {
    flex: 0 0 300px;
}

.service-icon img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-details {
    flex: 1;
}

.service-details-full {
    max-width: 600px;
    text-align: center;
}

.service-details h3,
.service-details-full h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-details p,
.service-details-full p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-details .price,
.service-details-full .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.testimonial-float {
    padding: 100px 60px;
    background-color: var(--primary-color);
}

.quote-block {
    max-width: 800px;
    margin-left: 120px;
}

.quote-block p {
    font-size: 26px;
    color: white;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-block .author {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.trust-section {
    padding: 80px 100px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 0 0 calc(33.333% - 30px);
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-diagonal {
    padding: 100px 80px 100px 140px;
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: left;
}

.cta-diagonal h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-diagonal p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #d4844f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 35px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.how-it-works {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

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

.step {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    position: relative;
}

.step-1 {
    margin-top: 0;
}

.step-2 {
    margin-top: 60px;
}

.step-3 {
    margin-top: 20px;
}

.step-4 {
    margin-top: 80px;
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.form-section-offset {
    padding: 80px 60px 80px 100px;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin-left: 60px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.final-quote {
    padding: 80px 100px;
    background-color: var(--bg-light);
}

.final-quote blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.final-quote blockquote p {
    font-size: 28px;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.5;
}

.disclaimer-section {
    padding: 60px 120px;
    background-color: #fff9e6;
}

.disclaimer-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
    margin-left: 240px;
}

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

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.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: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
}

.sticky-cta a:hover {
    background-color: #d4844f;
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    padding: 20px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: #ccc;
    transform: translateY(-2px);
}

.page-hero-slim {
    padding: 100px 80px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.page-hero-slim h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.about-story {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
}

.story-block-left {
    flex: 0 0 55%;
}

.story-block-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-block-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image-right {
    flex: 0 0 40%;
}

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

.mission-offset {
    padding: 60px 100px 60px 160px;
    background-color: var(--bg-light);
}

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

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

.values-grid {
    padding: 80px 60px;
}

.values-grid h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.team-intro {
    padding: 60px 120px;
    background-color: var(--bg-light);
}

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.approach-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.approach-left,
.approach-right {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.approach-left h4,
.approach-right h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.quote-highlight {
    padding: 80px 100px;
    background-color: var(--secondary-color);
}

.quote-highlight blockquote p {
    font-size: 28px;
    font-style: italic;
    color: white;
    text-align: center;
    line-height: 1.5;
}

.cta-simple {
    padding: 80px 60px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.services-full {
    padding: 80px 60px;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: white;
}

.service-header h2 {
    font-size: 28px;
    color: var(--text-dark);
}

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

.service-body {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
}

.service-body .service-description {
    flex: 1;
}

.service-body .service-image {
    flex: 0 0 350px;
}

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

.service-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-body ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-duration {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

.service-footer {
    padding: 0 40px 40px;
}

.comparison-note {
    padding: 60px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.comparison-note h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.comparison-note p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.contact-block {
    flex: 0 0 50%;
}

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

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

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-visual {
    flex: 0 0 40%;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.direction-info {
    padding: 60px 80px;
}

.direction-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.direction-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-hero {
    padding: 100px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

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

.service-selected {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 20px;
}

.next-steps {
    padding: 80px 100px;
}

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

.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    gap: 25px;
}

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

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.while-waiting {
    padding: 60px 80px;
    background-color: var(--bg-light);
}

.while-waiting h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.suggestions {
    display: flex;
    gap: 30px;
}

.suggestion-card {
    flex: 1;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
}

.suggestion-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.suggestion-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.suggestion-card a:hover {
    color: var(--primary-color);
}

.contact-reminder {
    padding: 60px 80px;
    text-align: center;
}

.contact-reminder h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-light);
}

.legal-page {
    padding: 0;
}

.legal-header {
    padding: 80px 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.legal-date {
    font-size: 14px;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 100px 80px;
    max-width: 1000px;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
}

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-content span {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .content-area {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .site-footer {
        margin-left: 200px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-text-block {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-visual {
        flex: 1;
        max-width: 500px;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
        margin-left: 40px;
        margin-right: 40px;
    }

    .service-icon {
        flex: 1;
        max-width: 400px;
    }

    .approach-split {
        flex-direction: column;
    }

    .contact-info-layout {
        flex-direction: column;
    }

    .suggestions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .content-area {
        margin-left: 0;
        width: 100%;
        margin-top: 0;
    }

    .site-footer {
        margin-left: 0;
    }

    .ad-notice {
        position: relative;
    }

    section {
        padding: 40px 20px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .text-column-left {
        flex: 1;
        padding-right: 0;
    }

    .stat-box-right {
        flex: 1;
        margin-top: 30px;
        transform: none;
    }

    .trust-grid {
        flex-direction: column;
    }

    .trust-item {
        flex: 1;
    }

    .steps-asymmetric {
        flex-direction: column;
    }

    .step {
        flex: 1;
        margin-top: 0 !important;
    }

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

    .value-card {
        flex: 1;
    }

    .service-body {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .legal-header,
    .legal-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
