* {
    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;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: var(--spacing-md);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
}

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

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

.btn-cookie-accept:hover {
    background: #c0392b;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-visual {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    height: 90vh;
    min-height: 600px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: var(--spacing-md);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.story-intro {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.visual-timeline {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.timeline-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.timeline-block {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.timeline-block img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.timeline-right {
    flex-direction: row-reverse;
}

.insight-reveal {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    color: white;
}

.insight-content h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.insight-content > p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.insight-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.problem-amplify {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.problem-amplify h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.problem-amplify p {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.cta-inline {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.trust-building {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.trust-building h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.trust-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    min-width: 280px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.trust-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonials-inline {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.testimonial {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--accent-color);
    margin-bottom: var(--spacing-lg);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.services-preview {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-light);
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-md);
    width: calc(50% - var(--spacing-md));
    min-width: 300px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

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

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: 8px;
}

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

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

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

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

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

.cta-urgency {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    text-align: center;
}

.cta-urgency h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-urgency p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.form-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

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

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

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

.page-header {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.content-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.content-section h2 {
    font-size: 2.2rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.stats-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 1.1rem;
}

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

.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: var(--spacing-lg) 0;
}

.service-detailed {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

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

.service-detailed-content {
    flex: 1;
    position: relative;
}

.service-detailed-image {
    width: 40%;
    min-width: 300px;
}

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

.service-detailed h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: var(--spacing-sm) 0;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 1.05rem;
}

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

.contact-info-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

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

.contact-item {
    margin-bottom: var(--spacing-lg);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-color);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

.contact-note {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 6px;
    margin-top: var(--spacing-lg);
}

.contact-note p {
    margin: 0;
    font-size: 1rem;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    padding: var(--spacing-md);
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-cta {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.faq-item {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.thanks-hero {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    text-align: center;
    margin-top: 60px;
}

.thanks-icon {
    margin: 0 auto var(--spacing-md);
    width: 100px;
    height: 100px;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-dark);
}

.service-confirmation {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    margin: var(--spacing-lg) auto;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-selected {
    font-size: 1.15rem;
    margin: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.next-steps {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.next-steps h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: var(--spacing-md);
}

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

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-resources {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.thanks-resources h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.resources-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.resources-list li {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resources-list a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.resources-list a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.legal-content ul li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

    .timeline-block {
        flex-direction: column !important;
    }

    .timeline-block img {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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

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

    .page-header .lead {
        font-size: 1.1rem;
    }

    .service-detailed {
        flex-direction: column !important;
    }

    .service-detailed-image {
        width: 100%;
    }

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

    .contact-map-placeholder {
        height: 300px;
    }

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

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