:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(273, 66%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(273, 66%, 70%), white);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.4s;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(273, 66%, 70%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.timeline-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 0 60px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 60px);
    margin-right: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 60px);
    margin-left: 60px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(273, 66%, 70%);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-text {
    line-height: 1.7;
    opacity: 0.9;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.mission-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: hsl(273, 66%, 70%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(273, 66%, 70%);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 70px !important;
        margin-right: 20px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 70px;
        margin-right: 20px;
    }
    
    .mission-section {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.advantages-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantages-subtitle {
    color: hsl(273, 66%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(273, 66%, 70%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(273, 66%, 45%), hsl(273, 66%, 70%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(273, 66%, 30%);
    margin-bottom: 15px;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.stats-row {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: hsl(273, 66%, 85%);
}

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

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); opacity: 0; }
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(273, 66%, 70%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: hsl(273, 66%, 70%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    font-size: 1.2rem;
    color: hsl(273, 66%, 70%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

.counter-animation {
    display: inline-block;
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.privacy-policy h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.privacy-policy p:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.privacy-policy li {
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.privacy-policy li::before {
    content: '✓';
    position: absolute;
    left: -10px;
    color: #27ae60;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.highlight-box h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.2rem;
}

.contact-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-policy h1 {
    color: #2c3e50;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    font-weight: 600;
}

.cookies-policy h3 {
    color: #2980b9;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

.cookies-policy ul {
    margin: 15px 0;
    padding-left: 25px;
}

.cookies-policy li {
    margin-bottom: 8px;
    font-size: 1.02em;
}

.cookie-type {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.consent-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gdpr-highlight {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.control-panel {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    color: hsl(273, 66%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-container {
    color: white;
    padding: 2rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid hsl(273, 66%, 85%);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: hsl(273, 66%, 30%);
}

.form-floating .form-control:focus {
    background: white;
    border-color: hsl(273, 66%, 45%);
    box-shadow: 0 0 0 0.2rem rgba(138, 43, 226, 0.25);
    outline: none;
}

.form-floating label {
    color: hsl(273, 66%, 45%);
    font-weight: 500;
    padding: 1rem 0.75rem;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: hsl(273, 66%, 45%);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.submit-btn {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, hsl(273, 66%, 50%) 0%, hsl(273, 66%, 35%) 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: hsl(273, 66%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.info-text {
    color: hsl(273, 66%, 85%);
    line-height: 1.6;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    background: hsl(273, 66%, 70%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: hsl(273, 66%, 85%);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(273, 66%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(273, 66%, 70%), white);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.4s;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(273, 66%, 70%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.timeline-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 0 60px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 60px);
    margin-right: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 60px);
    margin-left: 60px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(273, 66%, 70%);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-text {
    line-height: 1.7;
    opacity: 0.9;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.mission-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: hsl(273, 66%, 70%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(273, 66%, 70%);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 70px !important;
        margin-right: 20px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 70px;
        margin-right: 20px;
    }
    
    .mission-section {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    color: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    height: 100%;
    color: hsl(273, 66%, 30%);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(273, 66%, 70%);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    font-size: 3rem;
    color: hsl(273, 66%, 45%);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.service-card:hover .service-icon {
    color: hsl(273, 66%, 30%);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: hsl(273, 66%, 30%);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(273, 66%, 45%);
    text-align: center;
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: hsl(273, 66%, 35%);
    font-style: italic;
    text-align: center;
    border-top: 1px solid hsl(273, 66%, 70%);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 20px;
        padding: 25px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: hsl(273, 66%, 90%);
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(273, 66%, 70%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(273, 66%, 45%);
    opacity: 0.7;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, hsl(273, 66%, 70%), hsl(273, 66%, 60%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 150px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(273, 66%, 80%), hsl(273, 66%, 70%));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
        margin-bottom: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 66%, 70%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonials-scroll-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-scroll {
    animation: scrollUp 60s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@keyframes scrollUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    color: hsl(273, 66%, 30%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(273, 66%, 70%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: hsl(273, 66%, 45%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(273, 66%, 30%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.star-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-scroll-container {
        height: 500px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    font-size: 2.5em;
    color: #8e44ad;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    font-size: 1.2em;
    color: #7f8c8d;
    font-style: italic;
}

.terms-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.5em;
    color: #8e44ad;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #e8e8e8;
    font-weight: bold;
}

.section-content {
    margin-bottom: 25px;
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.important-note {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    padding: 8px 0;
    border-bottom: 1px dotted #ddd;
    position: relative;
    padding-left: 25px;
}

.terms-list li:before {
    content: "✓";
    color: #8e44ad;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 66%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(273, 66%, 45%), hsl(273, 66%, 70%));
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(273, 66%, 70%);
}

.faq-question {
    color: hsl(273, 66%, 30%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.question-icon {
    background: linear-gradient(135deg, hsl(273, 66%, 45%), hsl(273, 66%, 70%));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-left: 3rem;
}

.highlight {
    color: hsl(273, 66%, 45%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        margin-left: 2.5rem;
        font-size: 0.95rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(273, 66%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(273, 66%, 70%), white);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.4s;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(273, 66%, 70%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.timeline-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 0 60px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 60px);
    margin-right: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 60px);
    margin-left: 60px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(273, 66%, 70%);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-text {
    line-height: 1.7;
    opacity: 0.9;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.mission-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: hsl(273, 66%, 70%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(273, 66%, 70%);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 70px !important;
        margin-right: 20px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 70px;
        margin-right: 20px;
    }
    
    .mission-section {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: hsl(273, 66%, 90%);
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(273, 66%, 70%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(273, 66%, 45%);
    opacity: 0.7;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, hsl(273, 66%, 70%), hsl(273, 66%, 60%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 150px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(273, 66%, 80%), hsl(273, 66%, 70%));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
        margin-bottom: 1rem;
    }
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(273, 66%, 45%);
            --secondary-color: hsl(273, 66%, 30%);
            --accent-color: hsl(273, 66%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.5rem;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, hsl(273, 66%, 70%) 0%, transparent 70%);
    opacity: 0.3;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(273, 66%, 85%);
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    shape-outside: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
    float: right;
    margin-left: -100px;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.benefits-list li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.benefits-list i {
    color: hsl(273, 66%, 70%);
    margin-right: 15px;
    font-size: 1.3rem;
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(273, 66%, 70%), hsl(273, 66%, 85%));
    border: none;
    color: hsl(273, 66%, 20%);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, hsl(273, 66%, 85%), hsl(273, 66%, 70%));
    color: hsl(273, 66%, 15%);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 13px 33px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(273, 66%, 30%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: hsl(273, 66%, 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        margin-left: 0;
        float: none;
        shape-outside: none;
        margin-top: 2rem;
    }
    
    .hero-content {
        margin-top: -30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.advantages-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantages-subtitle {
    color: hsl(273, 66%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(273, 66%, 70%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(273, 66%, 45%), hsl(273, 66%, 70%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(273, 66%, 30%);
    margin-bottom: 15px;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.stats-row {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: hsl(273, 66%, 85%);
}

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

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); opacity: 0; }
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(273, 66%, 70%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: hsl(273, 66%, 70%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    font-size: 1.2rem;
    color: hsl(273, 66%, 70%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

.counter-animation {
    display: inline-block;
}

.contact-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    color: hsl(273, 66%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-container {
    color: white;
    padding: 2rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid hsl(273, 66%, 85%);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: hsl(273, 66%, 30%);
}

.form-floating .form-control:focus {
    background: white;
    border-color: hsl(273, 66%, 45%);
    box-shadow: 0 0 0 0.2rem rgba(138, 43, 226, 0.25);
    outline: none;
}

.form-floating label {
    color: hsl(273, 66%, 45%);
    font-weight: 500;
    padding: 1rem 0.75rem;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: hsl(273, 66%, 45%);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.submit-btn {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, hsl(273, 66%, 50%) 0%, hsl(273, 66%, 35%) 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: hsl(273, 66%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.info-text {
    color: hsl(273, 66%, 85%);
    line-height: 1.6;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    background: hsl(273, 66%, 70%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: hsl(273, 66%, 85%);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 66%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(273, 66%, 45%), hsl(273, 66%, 70%));
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(273, 66%, 70%);
}

.faq-question {
    color: hsl(273, 66%, 30%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.question-icon {
    background: linear-gradient(135deg, hsl(273, 66%, 45%), hsl(273, 66%, 70%));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-left: 3rem;
}

.highlight {
    color: hsl(273, 66%, 45%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        margin-left: 2.5rem;
        font-size: 0.95rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 66%, 70%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonials-scroll-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-scroll {
    animation: scrollUp 60s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@keyframes scrollUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    color: hsl(273, 66%, 30%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(273, 66%, 70%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: hsl(273, 66%, 45%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(273, 66%, 30%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.star-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-scroll-container {
        height: 500px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: hsl(273, 66%, 90%);
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(273, 66%, 70%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(273, 66%, 45%);
    opacity: 0.7;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, hsl(273, 66%, 70%), hsl(273, 66%, 60%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 150px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(273, 66%, 80%), hsl(273, 66%, 70%));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
        margin-bottom: 1rem;
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    color: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    height: 100%;
    color: hsl(273, 66%, 30%);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(273, 66%, 70%);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    font-size: 3rem;
    color: hsl(273, 66%, 45%);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.service-card:hover .service-icon {
    color: hsl(273, 66%, 30%);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: hsl(273, 66%, 30%);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(273, 66%, 45%);
    text-align: center;
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: hsl(273, 66%, 35%);
    font-style: italic;
    text-align: center;
    border-top: 1px solid hsl(273, 66%, 70%);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 20px;
        padding: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(273, 66%, 45%) 0%, hsl(273, 66%, 30%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(273, 66%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(273, 66%, 70%), white);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.4s;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: hsl(273, 66%, 70%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.timeline-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 0 60px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 60px);
    margin-right: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 60px);
    margin-left: 60px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(273, 66%, 70%);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-text {
    line-height: 1.7;
    opacity: 0.9;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.mission-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: hsl(273, 66%, 70%);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(273, 66%, 70%);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 70px !important;
        margin-right: 20px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 70px;
        margin-right: 20px;
    }
    
    .mission-section {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: hsl(273, 66%, 45%);
    --secondary-color: hsl(273, 66%, 30%);
    --accent-color: hsl(273, 66%, 70%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand h3 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}