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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-menu {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-right {
    min-height: 400px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

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

.insight-split {
    display: flex;
    flex-direction: column;
}

.insight-right {
    min-height: 350px;
    overflow: hidden;
}

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

.insight-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-white);
}

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

.insight-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.cta-text:hover {
    color: var(--secondary-color);
}

.problem-amplification {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.problem-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.problem-visual {
    overflow: hidden;
    border-radius: 8px;
}

.services-preview-split {
    display: flex;
    flex-direction: column;
}

.services-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-light);
}

.services-intro {
    max-width: 600px;
}

.services-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-right {
    padding: 3rem 5%;
    background: var(--bg-white);
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-services {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

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

.testimonial-split {
    display: flex;
    flex-direction: column;
}

.testimonial-left {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.testimonial-left p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-left cite {
    font-style: normal;
    opacity: 0.8;
}

.testimonial-right {
    min-height: 350px;
    overflow: hidden;
}

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

.trust-building {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    color: var(--text-light);
}

.process-split {
    display: flex;
    flex-direction: column;
}

.process-left {
    min-height: 350px;
    overflow: hidden;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-light);
}

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

.process-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.process-step {
    margin-bottom: 1.5rem;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
}

.secondary-services-split {
    display: flex;
    flex-direction: column;
}

.sec-services-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-white);
}

.service-highlight {
    max-width: 600px;
}

.service-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-highlight p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price-highlight {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: 0.3s;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.sec-services-right {
    min-height: 350px;
    overflow: hidden;
}

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

.value-proposition-split {
    display: flex;
    flex-direction: column;
}

.value-right {
    min-height: 400px;
    overflow: hidden;
}

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

.value-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.value-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

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

.add-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.add-services-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.add-services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.add-service-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.add-service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.add-service-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price-small {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.form-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--accent-color);
    color: var(--bg-white);
}

.form-intro {
    max-width: 600px;
}

.form-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.contact-form {
    max-width: 600px;
}

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

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

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

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5% 1rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: 0.3s;
}

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

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

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

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    opacity: 0.9;
}

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

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

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

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

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

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

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

.about-hero-split {
    display: flex;
    flex-direction: column;
}

.about-hero-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-light);
}

.about-hero-left h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-hero-right {
    min-height: 400px;
    overflow: hidden;
}

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

.philosophy-split {
    display: flex;
    flex-direction: column;
}

.phil-right {
    min-height: 350px;
    overflow: hidden;
}

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

.phil-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-white);
}

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

.phil-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.phil-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-image {
    overflow: hidden;
    border-radius: 8px;
}

.values-split {
    display: flex;
    flex-direction: column;
}

.values-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-white);
}

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

.values-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
}

.values-right {
    min-height: 400px;
    overflow: hidden;
}

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

.results-section {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.results-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.result-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.result-card p {
    opacity: 0.9;
}

.cta-about-split {
    display: flex;
    flex-direction: column;
}

.cta-about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5%;
    background: var(--accent-color);
    color: var(--bg-white);
}

.cta-about-left h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-about-left p {
    margin-bottom: 2rem;
}

.cta-about-left .btn-primary {
    background: var(--bg-white);
    color: var(--accent-color);
}

.cta-about-left .btn-primary:hover {
    background: var(--bg-light);
}

.cta-about-right {
    min-height: 350px;
    overflow: hidden;
}

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

.services-hero {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-list {
    padding: 2rem 0;
}

.services-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.service-detail-split.reverse {
    flex-direction: column;
}

.service-detail-left {
    min-height: 350px;
    overflow: hidden;
}

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

.service-detail-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5%;
    background: var(--bg-white);
}

.service-detail-right h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-right p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

.btn-service:hover {
    background: #c0392b;
}

.custom-packages {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.custom-container {
    max-width: 800px;
    margin: 0 auto;
}

.custom-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.custom-container p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-cta-split {
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5%;
    align-items: center;
    text-align: center;
}

.services-cta-left h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.services-cta-right {
    margin-top: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

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

.contact-hero {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-info-split {
    display: flex;
    flex-direction: column;
}

.contact-info-left {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: var(--bg-white);
}

.contact-details {
    max-width: 600px;
}

.contact-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-info-right {
    min-height: 350px;
    overflow: hidden;
}

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

.contact-cta {
    padding: 4rem 5%;
    background: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
}

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

.contact-cta-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-cta-container p {
    margin-bottom: 2rem;
}

.contact-cta .btn-primary {
    background: var(--bg-white);
    color: var(--accent-color);
}

.contact-cta .btn-primary:hover {
    background: var(--bg-light);
}

.thanks-hero {
    padding: 4rem 5%;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-content {
    text-align: center;
}

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

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-selected {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem auto;
    max-width: 500px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-visual {
    overflow: hidden;
    border-radius: 8px;
}

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

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-light);
}

.legal-content {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: var(--accent-color);
}

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

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 2rem;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        flex: 1;
    }

    .insight-split {
        flex-direction: row;
    }

    .insight-left,
    .insight-right {
        flex: 1;
    }

    .problem-container {
        flex-direction: row;
        align-items: center;
    }

    .problem-block {
        flex: 1;
    }

    .problem-visual {
        flex: 1;
    }

    .services-preview-split {
        flex-direction: row;
    }

    .services-left,
    .services-right {
        flex: 1;
    }

    .testimonial-split {
        flex-direction: row;
    }

    .testimonial-left,
    .testimonial-right {
        flex: 1;
    }

    .trust-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .process-split {
        flex-direction: row;
    }

    .process-left,
    .process-right {
        flex: 1;
    }

    .secondary-services-split {
        flex-direction: row;
    }

    .sec-services-left,
    .sec-services-right {
        flex: 1;
    }

    .value-proposition-split {
        flex-direction: row;
    }

    .value-left,
    .value-right {
        flex: 1;
    }

    .add-services-grid {
        flex-direction: row;
    }

    .form-split {
        flex-direction: row;
    }

    .form-left,
    .form-right {
        flex: 1;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .about-hero-split {
        flex-direction: row;
    }

    .about-hero-left,
    .about-hero-right {
        flex: 1;
    }

    .philosophy-split {
        flex-direction: row;
    }

    .phil-left,
    .phil-right {
        flex: 1;
    }

    .team-split {
        flex-direction: row;
        align-items: center;
    }

    .team-text,
    .team-image {
        flex: 1;
    }

    .values-split {
        flex-direction: row;
    }

    .values-left,
    .values-right {
        flex: 1;
    }

    .results-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .result-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .cta-about-split {
        flex-direction: row;
    }

    .cta-about-left,
    .cta-about-right {
        flex: 1;
    }

    .service-detail-split {
        flex-direction: row;
    }

    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

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

    .services-cta-split {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .services-cta-right {
        margin-top: 0;
    }

    .contact-info-split {
        flex-direction: row;
    }

    .contact-info-left,
    .contact-info-right {
        flex: 1;
    }

    .thanks-hero {
        flex-direction: row;
        align-items: center;
    }

    .thanks-content {
        flex: 1;
        text-align: left;
    }

    .thanks-visual {
        flex: 1;
    }

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

    .steps-grid {
        flex-direction: row;
    }
}