/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #27ae60;
    color: white;
}

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

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

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

/* Header and Navigation */
.header-split {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-left .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #e74c3c;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Split Screen Container */
.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.split-left,
.split-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero-split {
    min-height: 85vh;
    background: #f8f9fa;
}

.hero-split .split-container {
    min-height: 85vh;
}

.hero-split .split-left {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
}

.intro-section .split-left {
    min-height: 450px;
}

.intro-section .split-right {
    padding: 2rem 1.5rem;
}

.content-block {
    max-width: 550px;
}

.content-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

/* Trust Indicators */
.trust-indicators {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 1.5rem;
}

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

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

.indicator-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.indicator-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.indicator-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* Services Highlight */
.services-highlight {
    padding: 4rem 0;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-header-center h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.services-highlight .split-container {
    margin-bottom: 3rem;
}

.services-highlight .split-left,
.services-highlight .split-right {
    padding: 2rem 1.5rem;
}

.services-highlight .split-left img,
.services-highlight .split-right img {
    border-radius: 8px;
    min-height: 350px;
}

.service-card-detailed {
    max-width: 550px;
}

.service-card-detailed h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-detailed p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.price-tag {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: #667eea;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-select-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-section .split-left {
    padding: 2rem 1.5rem;
}

.form-section .split-right {
    padding: 2rem 1.5rem;
}

.form-content {
    max-width: 550px;
}

.form-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.form-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

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

.form-group label {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

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

.bg-accent {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.side-benefits {
    max-width: 550px;
    color: white;
}

.side-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

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

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 1.5rem 1rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

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

.sticky-btn {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-content .split-container {
    margin-bottom: 4rem;
}

.about-content .split-left,
.about-content .split-right {
    padding: 2rem 1.5rem;
}

.about-content .split-left img,
.about-content .split-right img {
    border-radius: 10px;
    min-height: 400px;
}

/* Team Values */
.team-values {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-section .split-left,
.team-section .split-right {
    padding: 2rem 1.5rem;
}

.team-section .split-right img {
    border-radius: 10px;
    min-height: 400px;
}

/* CTA About */
.cta-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 1.5rem;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-about .cta-primary {
    background: white;
    color: #667eea;
}

.cta-about .cta-primary:hover {
    background: #f8f9fa;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.services-detailed .split-container {
    margin-bottom: 4rem;
}

.services-detailed .split-left,
.services-detailed .split-right {
    padding: 2rem 1.5rem;
}

.services-detailed .split-left img,
.services-detailed .split-right img {
    border-radius: 10px;
    min-height: 400px;
}

.service-detail-block {
    max-width: 550px;
}

.service-detail-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-block h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.service-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #e74c3c;
    font-size: 1.5rem;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.price-amount {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: 700;
}

/* Service Guarantee */
.service-guarantee {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.guarantee-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Pricing Note */
.pricing-note {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-note h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* CTA Services */
.cta-services {
    padding: 5rem 1.5rem;
}

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
}

.contact-info-section .split-left,
.contact-info-section .split-right {
    padding: 2rem 1.5rem;
}

.contact-info-section .split-right img {
    border-radius: 10px;
    min-height: 500px;
}

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

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-block a {
    color: #e74c3c;
    font-weight: 600;
}

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

.note-text {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Methods */
.contact-methods {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.methods-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.method-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-link {
    display: inline-block;
    color: #e74c3c;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 1.5rem;
}

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

.faq-item {
    border-left: 4px solid #e74c3c;
    padding-left: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Final CTA Contact */
.final-cta-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 1.5rem;
}

.final-cta-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta-contact .cta-primary {
    background: white;
    color: #667eea;
}

.final-cta-contact .cta-primary:hover {
    background: #f8f9fa;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 5rem 1.5rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Thanks Content */
.thanks-content {
    padding: 4rem 0;
}

.thanks-content .split-left,
.thanks-content .split-right {
    padding: 2rem 1.5rem;
}

.thanks-content .split-right img {
    border-radius: 10px;
    min-height: 400px;
}

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-number {
    width: 45px;
    height: 45px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.timeline-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Thanks Info */
.thanks-info {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.info-box a {
    color: #e74c3c;
    font-weight: 600;
}

/* Thanks Additional */
.thanks-additional {
    padding: 4rem 1.5rem;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.additional-card {
    border: 2px solid #e0e0e0;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.additional-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.additional-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Final Thanks */
.final-thanks {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 1.5rem;
}

.final-thanks h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-thanks p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-thanks .cta-secondary {
    background: white;
    color: #667eea;
    border: none;
}

.final-thanks .cta-secondary:hover {
    background: #f8f9fa;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.container-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.container-legal h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.container-legal h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.container-legal p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

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

.container-legal ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #555;
}

.container-legal ol {
    list-style: decimal;
    margin: 1rem 0 1rem 2rem;
}

.container-legal ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-box-legal {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #e74c3c;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #555;
}

/* Media Queries - Tablet */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

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

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

    .split-left,
    .split-right {
        width: 50%;
    }

    .indicators-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .indicator-card {
        flex: 1;
    }

    .testimonials-layout {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

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

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

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

    .guarantee-item {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .method-card {
        flex: 1;
    }

    .info-boxes {
        flex-direction: row;
    }

    .info-box {
        flex: 1;
    }

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

    .additional-card {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

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

    .content-block h2 {
        font-size: 2.5rem;
    }

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

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .guarantee-grid {
        flex-wrap: nowrap;
    }

    .guarantee-item {
        flex: 1;
    }
}