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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a2332;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.cta-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 84, 85, 0.3);
}

.intro-alternate {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.intro-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.intro-left h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-inline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.value-cards {
    padding: 5rem 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.split-testimony {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.testimony-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
}

.testimony-left blockquote {
    max-width: 600px;
}

.testimony-left blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimony-left cite {
    font-style: normal;
    opacity: 0.9;
    font-size: 1rem;
}

.testimony-right {
    flex: 1;
}

.testimony-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    color: var(--primary-color);
    flex: 1;
    min-width: 200px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

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

.select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.select-service.selected {
    background: var(--success-color);
}

.form-section {
    padding: 5rem 5%;
    background: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.trust-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.trust-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.trust-left h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-point h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-final {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

.btn-accept:hover {
    background: #218838;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.about-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.expertise-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.expertise-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.expertise-right {
    flex: 1;
}

.expertise-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-list {
    margin-top: 1.5rem;
}

.expertise-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

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

.team-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: var(--border-color);
}

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

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 5rem 5%;
    background: var(--secondary-color);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.services-intro-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.services-detailed {
    background: var(--white);
}

.service-block {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.service-content-right {
    background: var(--white);
}

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-content-left h4,
.service-content-right h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-content-left ul,
.service-content-right ul {
    margin: 1rem 0;
}

.service-content-left ul li,
.service-content-right ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.service-content-left ul li:before,
.service-content-right ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.process-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    margin: 2rem 0;
}

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

.contact-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.response-time {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 5px;
}

.response-time h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.location-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.thanks-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--success-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-selected {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.next-steps {
    padding: 5rem 5%;
    background: var(--white);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.next-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.next-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-resources {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateX(5px);
}

.back-home {
    padding: 3rem 5%;
    text-align: center;
    background: var(--white);
}

.btn-home {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-alternate,
    .split-testimony,
    .trust-split,
    .about-split,
    .expertise-split,
    .contact-split,
    .services-intro-split,
    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .testimony-left,
    .testimony-right,
    .trust-left,
    .trust-right,
    .about-left,
    .about-right,
    .expertise-left,
    .expertise-right,
    .contact-left,
    .contact-right,
    .service-content-left,
    .service-content-right,
    .service-image-left,
    .service-image-right {
        min-height: 400px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .value-card,
    .value-item,
    .service-item,
    .faq-item,
    .resource-item {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }
}
