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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #e67e22;
    --accent-color: #2c5f7f;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.header-right a {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
}

.header-right a:hover,
.header-right a.active {
    color: var(--primary-color);
}

.header-right a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.btn-nav {
    padding: 0.6rem 1.4rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 500;
}

.btn-nav:hover {
    background: #d35400;
    transform: translateY(-1px);
}

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

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

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

.impact-section {
    display: flex;
    align-items: center;
}

.impact-left {
    flex: 1;
    padding: 4rem 8%;
}

.impact-right {
    flex: 1;
}

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

.impact-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.link-arrow:hover {
    color: #d35400;
}

.problem-reveal {
    display: flex;
    background: var(--bg-light);
    align-items: center;
}

.problem-left {
    flex: 1;
    padding: 4rem 8%;
}

.problem-right {
    flex: 1;
}

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

.problem-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    margin-top: 1.5rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.methodology-block {
    padding: 5rem 8%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.method-content {
    margin-bottom: 3rem;
}

.method-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.method-content p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.method-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.method-card p {
    opacity: 0.85;
    line-height: 1.6;
}

.split-testimonial {
    display: flex;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-left {
    background: var(--bg-light);
}

.testimonial-right {
    background: var(--accent-color);
    color: var(--bg-white);
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.8;
}

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

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

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

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

.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-service:hover {
    background: var(--accent-color);
}

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

.form-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.form-right {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

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

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

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

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

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

.final-cta-split {
    display: flex;
    background: var(--accent-color);
    color: var(--bg-white);
    align-items: center;
    padding: 4rem 0;
}

.cta-left {
    flex: 1;
    padding: 0 8%;
}

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

.cta-right {
    flex: 1;
    padding: 0 8%;
    display: flex;
    justify-content: center;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    padding: 0.5rem 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(230, 126, 34, 0.5);
}

.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;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.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: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

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

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

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

.story-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-left {
    flex: 1;
}

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

.team-right {
    flex: 1;
    padding: 0 8%;
}

.team-right h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.role {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

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

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

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

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.service-detail-left {
    flex: 1;
    padding: 0 8%;
}

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

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

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

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.badge-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-left h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-list {
    list-style: none;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-duration {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.arrow-point {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-services {
    padding: 5rem 8%;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info-left {
    flex: 1;
    padding: 4rem 8%;
    background: var(--bg-light);
}

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

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

.contact-info-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.contact-steps li {
    counter-increment: step-counter;
    padding: 0.8rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
}

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

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

.map-placeholder {
    padding: 5rem 8%;
    background: var(--bg-light);
    text-align: center;
}

.map-placeholder h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.map-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.map-box p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-note {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 8%;
}

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

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

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

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

.thanks-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    margin: 3rem 0;
}

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

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.thanks-contact p {
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .header-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .impact-section,
    .problem-reveal,
    .split-testimonial,
    .form-split,
    .final-cta-split,
    .page-hero-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .impact-left,
    .problem-left,
    .testimonial-left,
    .testimonial-right,
    .form-left,
    .form-right,
    .cta-left,
    .cta-right,
    .team-right,
    .service-detail-left,
    .contact-info-left {
        padding: 3rem 5%;
    }

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

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

    .impact-left h2,
    .problem-left h2,
    .method-content h2,
    .services-overview h2,
    .form-left h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .method-cards {
        flex-direction: column;
    }

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }

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

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