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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-split {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    color: #ffffff;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature-icon {
    background-color: rgba(255,255,255,0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.intro-split {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image-left img,
.split-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.split-content-left p,
.split-content-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-item strong {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 14px;
    color: #6c757d;
}

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-header-center p {
    font-size: 18px;
    color: #6c757d;
}

.services-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.step-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.values-split {
    padding: 100px 20px;
    background-color: #1a202c;
    color: #ffffff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    padding: 35px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 12px;
}

.value-block.highlight {
    background-color: #2563eb;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-block p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
}

.testimonial-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.7;
}

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

.testimonial-author strong {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #6c757d;
}

.cta-form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.form-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-intro p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a5568;
}

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

.form-benefits li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #2c3e50;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fffbeb;
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.cookie-link {
    color: #93c5fd;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero .hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.about-split {
    padding: 100px 20px;
    background-color: #ffffff;
}

.values-detail-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.values-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card-detailed {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.value-icon-wrapper {
    font-size: 42px;
    margin-bottom: 20px;
}

.value-card-detailed h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.value-card-detailed p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.team-approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-list {
    list-style: none;
    margin-top: 25px;
}

.approach-list li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #2c3e50;
}

.approach-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.technology-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.tech-content-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.tech-intro {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 50px;
}

.tech-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-feature {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.tech-feature h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.tech-feature p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.commitment-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.commitment-wrapper h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
}

.commitment-wrapper p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detailed-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-block {
    margin-bottom: 80px;
}

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

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-features-list {
    list-style: none;
    margin: 20px 0;
}

.service-features-list li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #2c3e50;
}

.service-features-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-guarantee {
    background-color: #eff6ff;
    padding: 15px 20px;
    border-left: 4px solid #2563eb;
    margin: 20px 0;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.6;
}

.price-display {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.additional-services-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.additional-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a202c;
}

.benefits-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.benefit-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.cta-services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-services-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-services-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-services-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

.contact-detail-item {
    margin-bottom: 30px;
}

.contact-detail-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2563eb;
}

.contact-detail-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.working-note {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    padding: 20px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 14px;
    margin: 0;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #1e40af;
}

.thanks-next-steps {
    text-align: left;
    margin: 30px 0;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #2c3e50;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-intro {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section ul li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-section a {
    color: #2563eb;
    text-decoration: none;
}

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

.legal-footer {
    font-size: 13px;
    color: #6c757d;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a202c;
}

.cookies-table td {
    font-size: 14px;
    color: #4a5568;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .split-container,
    .service-card-split,
    .form-split-container,
    .values-container,
    .testimonial-split-layout,
    .values-split-layout,
    .service-detail-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

    .hero-left h1,
    .page-hero .hero-content h1 {
        font-size: 36px;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

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

    .cookie-buttons {
        flex-wrap: wrap;
    }

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

    .tech-features-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .values-container {
        flex-direction: column;
    }

    .page-hero .hero-content h1 {
        font-size: 32px;
    }
}