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

:root {
    --primary-color: #1a5490;
    --secondary-color: #e8a547;
    --accent-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

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);
    overflow-x: hidden;
}

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

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

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

.navbar {
    background: var(--bg-white);
    padding: 1.2rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    min-width: 250px;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #27ae60;
}

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e9eb 100%);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-cta,
.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover,
.btn-cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.split-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 2rem;
}

.split-left img,
.split-right img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.intro-section,
.value-split,
.technology-split,
.team-split,
.architecture-section,
.vision-section,
.form-split,
.financing-section,
.values-split {
    padding: 5rem 0;
}

.intro-section {
    background: var(--bg-white);
}

.value-split {
    background: var(--bg-light);
}

.split-right h2,
.split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-right p,
.split-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.features-visual {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-box {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-box.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.service-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-size {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 12px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.stats-section {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: var(--bg-white);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
}

.form-split {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-description h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-benefits {
    list-style: none;
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.form-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.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.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--primary-color);
}

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

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

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.footer-section a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.about-intro,
.services-intro {
    padding: 5rem 2rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.vision-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

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

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-list strong {
    color: var(--primary-color);
}

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

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h2 {
    font-size: 2.8rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.3rem;
    position: relative;
}

.timeline-marker:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 9px;
    width: 2px;
    height: 100px;
    background: var(--border-color);
}

.timeline-item:last-child .timeline-marker:after {
    display: none;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
}

.certifications-section {
    padding: 5rem 2rem;
}

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

.cert-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

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

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

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

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

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

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

.service-item-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

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

.service-left,
.service-right {
    flex: 1;
    padding: 2rem;
}

.service-meta {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

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

.service-description p {
    margin-bottom: 1rem;
}

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

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

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

.pricing-info {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.pricing-card ul {
    list-style: none;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.financing-list {
    list-style: none;
    margin-top: 2rem;
}

.financing-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.financing-list strong {
    color: var(--primary-color);
}

.availability-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.availability-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.availability-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.availability-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.availability-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    min-width: 200px;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-info {
    margin-top: 3rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

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

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-item .note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    position: relative;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.visit-info {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.team-section {
    padding: 5rem 2rem;
}

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

.team-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-light);
}

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

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

.faq-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

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

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
}

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

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.contact-reminder {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hours {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.legal-page {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split,
    .split-container,
    .service-item-split,
    .testimonial-wrapper {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .split-right h2,
    .split-left h2 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .vision-grid,
    .steps-grid {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .thanks-container h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .pricing-grid,
    .stats-grid,
    .availability-stats {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 1rem;
    }
}