:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>');
    opacity: 0.3;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(300, 37%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(300, 37%, 70%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    font-size: 1.1rem;
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

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

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 30px 25px;
        padding-left: 25px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .mission-section {
        padding: 40px 30px;
        margin: 60px 0;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

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

.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);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: hsl(300, 37%, 70%);
}

.advantage-icon {
    font-size: 3.5rem;
    color: hsl(300, 37%, 45%);
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: hsl(300, 37%, 30%);
    transform: scale(1.1) rotate(5deg);
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(300, 37%, 30%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        font-size: 3rem;
    }
    
    .advantage-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
}

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

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

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

.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(300, 37%, 70%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    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;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scale(1);
}

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(300, 37%, 70%);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(300, 37%, 70%);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.chart-container {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
}

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

.progress-bar-container {
    margin-bottom: 25px;
}

.progress-label {
    color: hsl(300, 37%, 70%);
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress {
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, hsl(300, 37%, 70%) 0%, white 100%);
    transition: width 2s ease-in-out;
    border-radius: 6px;
}

.floating-stats {
    position: absolute;
    top: 20%;
    right: 5%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-stats-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite reverse;
}

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

.mini-stat {
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

.mini-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(300, 37%, 70%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .floating-stats,
    .floating-stats-2 {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

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

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

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.4em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

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

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

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

.privacy-policy li:before {
    content: "▶";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.cookies-policy h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e74c3c;
}

.cookies-policy h3 {
    color: #2980b9;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

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

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

.cookies-policy li {
    list-style: none;
    margin-bottom: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookies-policy li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cookies-policy li strong {
    color: #2c3e50;
    font-weight: 700;
}

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

.consent-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.highlight-box {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #27ae60;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.gdpr-compliance {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.update-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed #bdc3c7;
    font-size: 0.95rem;
}

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

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

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

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: hsl(300, 37%, 30%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: white;
    border-color: hsl(300, 37%, 70%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: hsl(300, 37%, 45%);
    opacity: 0.8;
}

.contact-form label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(300, 37%, 75%), hsl(300, 37%, 50%));
}

.contact-info {
    padding: 40px 30px;
}

.contact-info h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info p {
    color: hsl(300, 37%, 90%);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.working-hours h4 {
    color: hsl(300, 37%, 70%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.working-hours p {
    margin-bottom: 10px;
    font-size: 16px;
}

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

.section-title h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title p {
    color: hsl(300, 37%, 85%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding: 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>');
    opacity: 0.3;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(300, 37%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(300, 37%, 70%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    font-size: 1.1rem;
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

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

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 30px 25px;
        padding-left: 25px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .mission-section {
        padding: 40px 30px;
        margin: 60px 0;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 100%);
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(300, 37%, 70%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.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.6s ease;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(300, 37%, 45%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(300, 37%, 45%), hsl(300, 37%, 30%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(300, 37%, 30%), hsl(300, 37%, 45%));
}

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

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(300, 37%, 30%);
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(300, 37%, 45%), hsl(300, 37%, 30%));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 20px;
        padding: 25px 20px;
    }
}

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

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

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

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.newsletter-title {
    color: hsl(300, 37%, 30%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    border-radius: 2px;
}

.newsletter-description {
    color: hsl(300, 37%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(hsl(300, 37%, 70%), 0.1);
    border-radius: 12px;
    border-left: 4px solid hsl(300, 37%, 70%);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(300, 37%, 45%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.benefit-text {
    color: hsl(300, 37%, 30%);
    font-weight: 500;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid rgba(hsl(300, 37%, 45%), 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: hsl(300, 37%, 30%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(300, 37%, 45%);
    box-shadow: 0 0 0 4px rgba(hsl(300, 37%, 45%), 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: rgba(hsl(300, 37%, 30%), 0.6);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(hsl(300, 37%, 45%), 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(hsl(300, 37%, 45%), 0.4);
    background: linear-gradient(135deg, hsl(300, 37%, 50%) 0%, hsl(300, 37%, 35%) 100%);
}

.subscribe-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(hsl(300, 37%, 30%), 0.7);
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(300, 37%, 70%);
}

.quote-icon {
    font-size: 2.5rem;
    color: hsl(300, 37%, 70%);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    border-top: 1px solid hsl(300, 37%, 90%);
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    color: hsl(300, 37%, 30%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: hsl(300, 37%, 45%);
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.terms-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.terms-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-weight: 300;
}

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

.section-title {
    font-size: 1.5em;
    color: #34495e;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

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

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

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

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

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

.terms-list li:before {
    content: "▶";
    color: #3498db;
    position: absolute;
    left: 0;
    top: 8px;
}

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

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

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

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.faq-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);
}

.faq-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    border-color: hsl(300, 37%, 70%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(300, 37%, 45%), hsl(300, 37%, 30%));
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(135deg, hsl(300, 37%, 50%), hsl(300, 37%, 35%));
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: hsl(300, 37%, 70%);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}

.faq-answer p {
    color: hsl(300, 37%, 30%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-highlight {
    color: hsl(300, 37%, 45%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>');
    opacity: 0.3;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(300, 37%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(300, 37%, 70%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    font-size: 1.1rem;
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

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

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 30px 25px;
        padding-left: 25px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .mission-section {
        padding: 40px 30px;
        margin: 60px 0;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

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

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

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.newsletter-title {
    color: hsl(300, 37%, 30%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    border-radius: 2px;
}

.newsletter-description {
    color: hsl(300, 37%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(hsl(300, 37%, 70%), 0.1);
    border-radius: 12px;
    border-left: 4px solid hsl(300, 37%, 70%);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(300, 37%, 45%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.benefit-text {
    color: hsl(300, 37%, 30%);
    font-weight: 500;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid rgba(hsl(300, 37%, 45%), 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: hsl(300, 37%, 30%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(300, 37%, 45%);
    box-shadow: 0 0 0 4px rgba(hsl(300, 37%, 45%), 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: rgba(hsl(300, 37%, 30%), 0.6);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(hsl(300, 37%, 45%), 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(hsl(300, 37%, 45%), 0.4);
    background: linear-gradient(135deg, hsl(300, 37%, 50%) 0%, hsl(300, 37%, 35%) 100%);
}

.subscribe-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(hsl(300, 37%, 30%), 0.7);
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

:root {
            --primary-color: hsl(300, 37%, 45%);
            --secondary-color: hsl(300, 37%, 30%);
            --accent-color: hsl(300, 37%, 70%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .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;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
            border-radius: 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: white !important;
                background-color: var(--primary-color);
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 100%);
    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%, rgba(255,255,255,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"
        "description image"
        "features cta";
    gap: 2rem;
    min-height: 100vh;
    align-items: center;
    padding: 2rem 0;
}

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

.hero-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-image {
    grid-area: image;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-description {
    grid-area: description;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

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

.hero-features ul {
    list-style: none;
    padding: 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-features i {
    color: hsl(300, 37%, 70%);
    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: linear-gradient(45deg, hsl(300, 37%, 70%) 0%, white 100%);
    border: none;
    color: hsl(300, 37%, 30%);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    color: hsl(300, 37%, 30%);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "image"
            "description"
            "features"
            "cta";
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-image {
        transform: none;
    }
    
    .hero-cta {
        align-items: center;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 100%);
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(300, 37%, 70%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.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.6s ease;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(300, 37%, 45%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(300, 37%, 45%), hsl(300, 37%, 30%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(300, 37%, 30%), hsl(300, 37%, 45%));
}

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

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(300, 37%, 30%);
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(300, 37%, 45%), hsl(300, 37%, 30%));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 20px;
        padding: 25px 20px;
    }
}

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

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

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

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.newsletter-title {
    color: hsl(300, 37%, 30%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    border-radius: 2px;
}

.newsletter-description {
    color: hsl(300, 37%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(hsl(300, 37%, 70%), 0.1);
    border-radius: 12px;
    border-left: 4px solid hsl(300, 37%, 70%);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(300, 37%, 45%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.benefit-text {
    color: hsl(300, 37%, 30%);
    font-weight: 500;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid rgba(hsl(300, 37%, 45%), 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: hsl(300, 37%, 30%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(300, 37%, 45%);
    box-shadow: 0 0 0 4px rgba(hsl(300, 37%, 45%), 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: rgba(hsl(300, 37%, 30%), 0.6);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(hsl(300, 37%, 45%), 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(hsl(300, 37%, 45%), 0.4);
    background: linear-gradient(135deg, hsl(300, 37%, 50%) 0%, hsl(300, 37%, 35%) 100%);
}

.subscribe-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(hsl(300, 37%, 30%), 0.7);
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

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

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

.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);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: hsl(300, 37%, 70%);
}

.advantage-icon {
    font-size: 3.5rem;
    color: hsl(300, 37%, 45%);
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: hsl(300, 37%, 30%);
    transform: scale(1.1) rotate(5deg);
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(300, 37%, 30%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        font-size: 3rem;
    }
    
    .advantage-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
}

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

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.faq-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);
}

.faq-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    border-color: hsl(300, 37%, 70%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(300, 37%, 45%), hsl(300, 37%, 30%));
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(135deg, hsl(300, 37%, 50%), hsl(300, 37%, 35%));
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: hsl(300, 37%, 70%);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}

.faq-answer p {
    color: hsl(300, 37%, 30%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-highlight {
    color: hsl(300, 37%, 45%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

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

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

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

.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(300, 37%, 70%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    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;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scale(1);
}

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(300, 37%, 70%);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(300, 37%, 70%);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.chart-container {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
}

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

.progress-bar-container {
    margin-bottom: 25px;
}

.progress-label {
    color: hsl(300, 37%, 70%);
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress {
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, hsl(300, 37%, 70%) 0%, white 100%);
    transition: width 2s ease-in-out;
    border-radius: 6px;
}

.floating-stats {
    position: absolute;
    top: 20%;
    right: 5%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-stats-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite reverse;
}

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

.mini-stat {
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

.mini-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(300, 37%, 70%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .floating-stats,
    .floating-stats-2 {
        display: none;
    }
}

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

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

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: hsl(300, 37%, 30%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: white;
    border-color: hsl(300, 37%, 70%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: hsl(300, 37%, 45%);
    opacity: 0.8;
}

.contact-form label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(300, 37%, 75%), hsl(300, 37%, 50%));
}

.contact-info {
    padding: 40px 30px;
}

.contact-info h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info p {
    color: hsl(300, 37%, 90%);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.working-hours h4 {
    color: hsl(300, 37%, 70%);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.working-hours p {
    margin-bottom: 10px;
    font-size: 16px;
}

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

.section-title h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title p {
    color: hsl(300, 37%, 85%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding: 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(300, 37%, 45%) 0%, hsl(300, 37%, 30%) 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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    color: hsl(300, 37%, 70%);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(300, 37%, 70%);
}

.quote-icon {
    font-size: 2.5rem;
    color: hsl(300, 37%, 70%);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    border-top: 1px solid hsl(300, 37%, 90%);
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    color: hsl(300, 37%, 30%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: hsl(300, 37%, 45%);
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>');
    opacity: 0.3;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(300, 37%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(300, 37%, 70%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(300, 37%, 70%), hsl(300, 37%, 45%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    font-size: 1.1rem;
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: hsl(300, 37%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

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

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 30px 25px;
        padding-left: 25px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .mission-section {
        padding: 40px 30px;
        margin: 60px 0;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 25%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid hsl(300, 37%, 45%);
}

.footer-brand h3 {
    color: hsl(300, 37%, 70%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section h5 {
    color: hsl(300, 37%, 70%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(300, 37%, 45%);
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(300, 37%, 70%);
    padding-left: 8px;
}

.contact-info p {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: hsl(300, 37%, 70%);
}

.phone-link {
    color: hsl(300, 37%, 70%);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(300, 37%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(300, 37%, 30%) 0%, hsl(300, 37%, 35%) 100%);
    color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid hsl(300, 37%, 45%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-btn {
    background: hsl(300, 37%, 45%);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(300, 37%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(300, 37%, 70%);
    color: hsl(300, 37%, 70%);
}

.cookie-btn-secondary:hover {
    background: hsl(300, 37%, 70%);
    color: hsl(300, 37%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}