:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

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

.section-title {
    color: hsl(282, 42%, 60%);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.card-title {
    color: hsl(282, 42%, 35%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(282, 42%, 60%);
    border-radius: 2px;
}

.card-text {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(282, 42%, 35%) 0%, transparent 70%);
    opacity: 0.6;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 250px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 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.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: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(282, 42%, 60%), hsl(282, 42%, 80%));
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
    text-align: right;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
    text-align: left;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(282, 42%, 60%), hsl(282, 42%, 80%));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: hsl(282, 42%, 60%);
    color: white;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 80%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.advantage-item:nth-child(odd) .advantage-icon {
    margin-left: auto;
}

.advantage-item:nth-child(even) .advantage-icon {
    margin-right: auto;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.advantage-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(282, 42%, 35%);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.advantage-card:hover .advantage-title {
    color: white;
}

.advantage-description {
    color: hsl(282, 42%, 25%);
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.advantage-card:hover .advantage-description {
    color: rgba(255, 255, 255, 0.9);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(282, 42%, 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.4s ease;
}

.advantage-item:hover .timeline-dot {
    background: hsl(282, 42%, 80%);
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 30px hsl(282, 42%, 60%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .advantage-item:nth-child(odd) .advantage-icon,
    .advantage-item:nth-child(even) .advantage-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 25px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 100px 0;
    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.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); }
}

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

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    line-height: 1.6;
}

.stat-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: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.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 {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(282, 42%, 60%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(282, 42%, 60%);
    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: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(282, 42%, 85%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(282, 42%, 75%);
    margin-top: 10px;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.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-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.privacy-header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.privacy-header p {
    font-size: 1.1em;
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.privacy-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #667eea;
}

.privacy-section h2 {
    color: #4a5568;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "🔒";
    margin-right: 10px;
    font-size: 0.8em;
}

.privacy-section p {
    margin-bottom: 15px;
    color: #2d3748;
    text-align: justify;
}

.privacy-section ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: #4a5568;
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #f6ad55;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rights-card {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #718096;
    margin-top: 30px;
    padding: 15px;
    background: #edf2f7;
    border-radius: 5px;
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #007bff;
}

.policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #007bff;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #007bff;
    background: linear-gradient(90deg, rgba(0,123,255,0.1) 0%, transparent 100%);
    padding: 15px 0 15px 20px;
    border-radius: 0 25px 25px 0;
}

.content-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    padding: 0 10px;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookie-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cookie-card h4 {
    color: #28a745;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(255,193,7,0.2);
}

.consent-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #17a2b8;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(23,162,184,0.2);
}

.control-list {
    list-style: none;
    padding: 0;
}

.control-list li {
    background: white;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #6f42c1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.control-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gdpr-section {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #dc3545;
    margin: 40px 0;
    text-align: center;
}

.gdpr-section h3 {
    color: #dc3545;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

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

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    color: hsl(282, 42%, 35%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: block;
}

.form-control {
    border: 2px solid hsl(282, 42%, 80%);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(282, 42%, 35%);
}

.form-control:focus {
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 139, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(282, 42%, 60%);
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 35%) 100%);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 139, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 139, 0.4);
    background: linear-gradient(45deg, hsl(282, 42%, 65%) 0%, hsl(282, 42%, 40%) 100%);
}

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

.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);
    transition: transform 0.3s ease;
}

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

.info-title {
    color: hsl(282, 42%, 80%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.step-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

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

.section-title {
    color: hsl(282, 42%, 60%);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.card-title {
    color: hsl(282, 42%, 35%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(282, 42%, 60%);
    border-radius: 2px;
}

.card-text {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(282, 42%, 35%) 0%, transparent 70%);
    opacity: 0.6;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 250px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-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: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-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.5s;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.service-title {
    color: hsl(282, 42%, 20%);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(282, 42%, 35%);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.service-price {
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 35%));
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 12px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.service-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(282, 42%, 60%);
    font-weight: bold;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 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"><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(-20px) rotate(360deg); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(282, 42%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(282, 42%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.benefits-list li {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(282, 42%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 0 0 3px rgba(153, 102, 153, 0.1);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 50%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(153, 102, 153, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(282, 42%, 55%) 0%, hsl(282, 42%, 45%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(153, 102, 153, 0.4);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(282, 42%, 40%);
    text-align: center;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(282, 42%, 60%);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: auto;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.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(282, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: hsl(282, 42%, 60%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 40%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.author-info h5 {
    color: hsl(282, 42%, 30%);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: hsl(282, 42%, 50%);
    margin: 0;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: hsl(282, 42%, 60%);
    border-color: hsl(282, 42%, 60%);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: hsl(282, 42%, 60%);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    color: #34495e;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.section-header {
    color: #2980b9;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: bold;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    background: rgba(52, 152, 219, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

.terms-text {
    text-align: justify;
    margin-bottom: 20px;
    padding: 0 10px;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.highlight-box {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
}

.list-item {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.list-item:before {
    content: "▶";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: rgba(127, 140, 141, 0.1);
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    color: hsl(282, 42%, 60%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-button {
    background: hsl(282, 42%, 60%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(282, 42%, 35%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border: none;
    box-shadow: 0 0 0 0.25rem rgba(130, 71, 102, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    border-radius: 15px !important;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.95);
    color: hsl(282, 42%, 20%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 2px solid hsl(282, 42%, 60%);
}

.accordion-collapse {
    border: none;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

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

.section-title {
    color: hsl(282, 42%, 60%);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.card-title {
    color: hsl(282, 42%, 35%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(282, 42%, 60%);
    border-radius: 2px;
}

.card-text {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(282, 42%, 35%) 0%, transparent 70%);
    opacity: 0.6;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 250px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 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"><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(-20px) rotate(360deg); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(282, 42%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(282, 42%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.benefits-list li {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(282, 42%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 0 0 3px rgba(153, 102, 153, 0.1);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 50%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(153, 102, 153, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(282, 42%, 55%) 0%, hsl(282, 42%, 45%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(153, 102, 153, 0.4);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(282, 42%, 40%);
    text-align: center;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(282, 42%, 60%);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: auto;
    }
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}

:root {
            --primary-color: hsl(282, 42%, 35%);
            --secondary-color: hsl(282, 42%, 20%);
            --accent-color: hsl(282, 42%, 60%);
        }
        
        .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 {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            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, 0.9%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: 1rem;
        }
        
        .logo-container img {
            filter: brightness(1.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, hsla(282, 42%, 60%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "title image"
        "subtitle image"
        "content cta";
    gap: 2rem;
    align-items: center;
    min-height: 80vh;
}

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

.hero-subtitle {
    grid-area: subtitle;
    color: hsl(282, 42%, 60%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
}

.hero-image {
    grid-area: image;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.hero-content {
    grid-area: content;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.benefits-list i {
    color: hsl(282, 42%, 60%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-cta {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.btn-primary-custom {
    background: hsl(282, 42%, 60%);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: hsl(282, 42%, 70%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    color: hsl(282, 42%, 60%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(282, 42%, 60%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "subtitle"
            "image"
            "content"
            "cta";
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .benefits-list li {
        justify-content: center;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 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"><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(-20px) rotate(360deg); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(282, 42%, 20%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(282, 42%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.benefits-list li {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(282, 42%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 0 0 3px rgba(153, 102, 153, 0.1);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 50%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(153, 102, 153, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(282, 42%, 55%) 0%, hsl(282, 42%, 45%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(153, 102, 153, 0.4);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(282, 42%, 40%);
    text-align: center;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(282, 42%, 60%);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: auto;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 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.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: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(282, 42%, 60%), hsl(282, 42%, 80%));
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
    text-align: right;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
    text-align: left;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(282, 42%, 60%), hsl(282, 42%, 80%));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: hsl(282, 42%, 60%);
    color: white;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 80%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.advantage-item:nth-child(odd) .advantage-icon {
    margin-left: auto;
}

.advantage-item:nth-child(even) .advantage-icon {
    margin-right: auto;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.advantage-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(282, 42%, 35%);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.advantage-card:hover .advantage-title {
    color: white;
}

.advantage-description {
    color: hsl(282, 42%, 25%);
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.advantage-card:hover .advantage-description {
    color: rgba(255, 255, 255, 0.9);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(282, 42%, 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.4s ease;
}

.advantage-item:hover .timeline-dot {
    background: hsl(282, 42%, 80%);
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 30px hsl(282, 42%, 60%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .advantage-item:nth-child(odd) .advantage-icon,
    .advantage-item:nth-child(even) .advantage-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 25px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    color: hsl(282, 42%, 60%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-button {
    background: hsl(282, 42%, 60%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(282, 42%, 35%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border: none;
    box-shadow: 0 0 0 0.25rem rgba(130, 71, 102, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    border-radius: 15px !important;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.95);
    color: hsl(282, 42%, 20%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 2px solid hsl(282, 42%, 60%);
}

.accordion-collapse {
    border: none;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-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: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-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.5s;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.service-title {
    color: hsl(282, 42%, 20%);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(282, 42%, 35%);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.service-price {
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 35%));
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 12px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.service-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(282, 42%, 60%);
    font-weight: bold;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.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(282, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: hsl(282, 42%, 60%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(282, 42%, 60%), hsl(282, 42%, 40%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.author-info h5 {
    color: hsl(282, 42%, 30%);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: hsl(282, 42%, 50%);
    margin: 0;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: hsl(282, 42%, 60%);
    border-color: hsl(282, 42%, 60%);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: hsl(282, 42%, 60%);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 100px 0;
    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.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); }
}

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

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    line-height: 1.6;
}

.stat-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: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.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 {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(282, 42%, 60%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(282, 42%, 60%);
    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: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(282, 42%, 85%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(282, 42%, 75%);
    margin-top: 10px;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 80px 0;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

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

.section-title {
    color: hsl(282, 42%, 60%);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.card-title {
    color: hsl(282, 42%, 35%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(282, 42%, 60%);
    border-radius: 2px;
}

.card-text {
    color: hsl(282, 42%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(282, 42%, 35%) 0%, transparent 70%);
    opacity: 0.6;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 250px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(282, 42%, 35%) 0%, hsl(282, 42%, 20%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

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

.section-subtitle {
    color: hsl(282, 42%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    color: hsl(282, 42%, 35%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: block;
}

.form-control {
    border: 2px solid hsl(282, 42%, 80%);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(282, 42%, 35%);
}

.form-control:focus {
    border-color: hsl(282, 42%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 139, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(282, 42%, 60%);
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(282, 42%, 60%) 0%, hsl(282, 42%, 35%) 100%);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 139, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 139, 0.4);
    background: linear-gradient(45deg, hsl(282, 42%, 65%) 0%, hsl(282, 42%, 40%) 100%);
}

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

.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);
    transition: transform 0.3s ease;
}

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

.info-title {
    color: hsl(282, 42%, 80%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.step-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(282, 42%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer li {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: hsl(282, 42%, 60%);
    transform: translateX(5px);
}

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

footer ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(282, 42%, 60%), transparent);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid hsl(282, 42%, 35%);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item i {
    color: hsl(282, 42%, 60%);
    margin-right: 10px;
    width: 20px;
}

#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(282, 42%, 20%) 0%, hsl(282, 42%, 35%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookieNotice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(282, 42%, 60%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: hsl(282, 42%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn.outline {
    background: transparent;
    border: 2px solid hsl(282, 42%, 60%);
    color: hsl(282, 42%, 60%);
}

.cookie-btn.outline:hover {
    background: hsl(282, 42%, 60%);
    color: white;
}