:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0,10 L20,10" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><path d="M10,0 L10,20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>');
    opacity: 0.3;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(226, 30%, 57%);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.story-title {
    font-size: 2rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid hsl(226, 30%, 57%);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 15px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .mission-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .mission-image {
        height: 300px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
}

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

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

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(226, 30%, 57%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(226, 30%, 57%) 0%, hsl(226, 30%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(226, 30%, 85%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.zigzag-left {
    padding-right: 30px;
}

.zigzag-right {
    padding-left: 30px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .zigzag-left,
    .zigzag-right {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
}

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0 0h20v20H0z" fill="none"/><path d="M10 0L20 10L10 20L0 10z" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    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(226, 30%, 80%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(226, 30%, 57%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(226, 30%, 80%);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    color: hsl(226, 30%, 70%);
    line-height: 1.5;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 10%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 25%; right: 5%; animation-delay: 3s; }

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

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

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.privacy-policy {
    max-width: 900px;
    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;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy h2 {
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
    padding-left: 15px;
    border-left: 4px solid #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.privacy-policy h3 {
    color: #2980b9;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 500;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

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

.privacy-policy .highlight {
    background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #27ae60;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
}

.privacy-policy .important {
    background: linear-gradient(120deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #e17055;
    margin: 20px 0;
    font-weight: 500;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

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

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

.cookies-policy h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 35px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #3498db;
    font-weight: 600;
    background: rgba(52, 152, 219, 0.1);
    padding: 15px 0 15px 20px;
    border-radius: 0 10px 10px 0;
}

.cookies-policy h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 25px 0 15px 0;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

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

.cookies-policy li {
    margin-bottom: 12px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

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

.cookies-policy li::before {
    content: "🍪";
    position: absolute;
    left: -15px;
    top: 12px;
    font-size: 1.2rem;
}

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

.cookie-type h4 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.consent-notice {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 15px;
    background: rgba(127, 140, 141, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
}

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 17%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-weight: 300;
}

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

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

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-color: hsl(226, 30%, 57%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-control:valid {
    border-color: #28a745;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(226, 30%, 62%), hsl(226, 30%, 47%));
}

.contact-info {
    padding: 2rem;
}

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

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(226, 30%, 57%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.consultation-steps {
    list-style: none;
    padding: 0;
}

.consultation-steps li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.consultation-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(226, 30%, 57%);
    font-weight: bold;
    font-size: 1.2rem;
}

.consultation-steps li:last-child {
    border-bottom: none;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.working-hours h4 {
    color: hsl(226, 30%, 57%);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0,10 L20,10" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><path d="M10,0 L10,20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>');
    opacity: 0.3;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(226, 30%, 57%);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.story-title {
    font-size: 2rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid hsl(226, 30%, 57%);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 15px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .mission-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .mission-image {
        height: 300px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

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

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

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

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid hsl(226, 30%, 57%);
    color: hsl(226, 30%, 57%);
    border-radius: 30px;
    padding: 12px 30px;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    background: hsl(226, 30%, 57%);
    color: white;
    border-color: hsl(226, 30%, 57%);
    transform: translateY(-2px);
}

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(226, 30%, 57%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: white;
    color: hsl(226, 30%, 32%);
    transform: rotate(360deg);
}

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

.service-description {
    color: hsl(226, 30%, 80%);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(226, 30%, 57%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.9rem;
    color: hsl(226, 30%, 70%);
    font-style: italic;
}

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10 0L20 10L10 20L0 10Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>') repeat;
    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.3);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-title::after {
    content: '⛸️';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

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

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

.email-input {
    padding: 18px 25px;
    border: 2px solid hsl(226, 30%, 57%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(226, 30%, 17%);
}

.email-input:focus {
    border-color: hsl(226, 30%, 32%);
    box-shadow: 0 0 0 3px rgba(65, 84, 118, 0.1);
    background: white;
}

.email-input::placeholder {
    color: hsl(226, 30%, 57%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 57%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(65, 84, 118, 0.4);
    background: linear-gradient(45deg, hsl(226, 30%, 27%) 0%, hsl(226, 30%, 52%) 100%);
}

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

.benefits-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: hsl(226, 30%, 32%);
    font-size: 0.95rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        gap: 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }
}

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

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

.section-subtitle {
    color: hsl(226, 30%, 57%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid hsl(226, 30%, 57%);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(226, 30%, 32%);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: hsl(226, 30%, 57%);
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.client-info {
    border-top: 2px solid hsl(226, 30%, 57%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(226, 30%, 17%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.client-location {
    color: hsl(226, 30%, 57%);
    font-size: 0.95rem;
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: hsl(226, 30%, 32%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: hsl(226, 30%, 57%);
    border: 2px solid white;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: white;
    border-color: hsl(226, 30%, 57%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin: 0 5px;
        padding: 2rem;
        min-height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

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

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

.terms-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-section {
    background: rgba(255, 255, 255, 0.9);
    margin: 25px 0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #3498db;
}

.section-title {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

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

.highlight-box {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3498db;
    margin: 20px 0;
}

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

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 17%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "❄️";
    margin-right: 15px;
    font-size: 1.5rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 40px;
}

.highlight {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding-left: 30px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0,10 L20,10" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><path d="M10,0 L10,20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>');
    opacity: 0.3;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(226, 30%, 57%);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.story-title {
    font-size: 2rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid hsl(226, 30%, 57%);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 15px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .mission-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .mission-image {
        height: 300px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
}

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10 0L20 10L10 20L0 10Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>') repeat;
    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.3);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-title::after {
    content: '⛸️';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

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

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

.email-input {
    padding: 18px 25px;
    border: 2px solid hsl(226, 30%, 57%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(226, 30%, 17%);
}

.email-input:focus {
    border-color: hsl(226, 30%, 32%);
    box-shadow: 0 0 0 3px rgba(65, 84, 118, 0.1);
    background: white;
}

.email-input::placeholder {
    color: hsl(226, 30%, 57%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 57%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(65, 84, 118, 0.4);
    background: linear-gradient(45deg, hsl(226, 30%, 27%) 0%, hsl(226, 30%, 52%) 100%);
}

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

.benefits-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: hsl(226, 30%, 32%);
    font-size: 0.95rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        gap: 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(226, 30%, 32%);
            --secondary-color: hsl(226, 30%, 17%);
            --accent-color: hsl(226, 30%, 57%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .navbar {
            background: var(--primary-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .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;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 32%) 100%);
    min-height: 100vh;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-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="ice" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.benefits-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-list i {
    color: hsl(226, 30%, 57%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

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

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

.cta-buttons {
    margin-top: 3rem;
}

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(226, 30%, 57%), hsl(226, 30%, 32%));
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(226, 30%, 62%), hsl(226, 30%, 37%));
}

.btn-outline-custom {
    border: 2px solid hsl(226, 30%, 57%);
    color: hsl(226, 30%, 57%);
    background: transparent;
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: hsl(226, 30%, 57%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

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

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

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

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(226, 30%, 57%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(226, 30%, 57%) 0%, hsl(226, 30%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(226, 30%, 85%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.zigzag-left {
    padding-right: 30px;
}

.zigzag-right {
    padding-left: 30px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .zigzag-left,
    .zigzag-right {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 17%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "❄️";
    margin-right: 15px;
    font-size: 1.5rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 40px;
}

.highlight {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding-left: 30px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 17%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-weight: 300;
}

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

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

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-color: hsl(226, 30%, 57%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-control:valid {
    border-color: #28a745;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(226, 30%, 62%), hsl(226, 30%, 47%));
}

.contact-info {
    padding: 2rem;
}

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

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(226, 30%, 57%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.consultation-steps {
    list-style: none;
    padding: 0;
}

.consultation-steps li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.consultation-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(226, 30%, 57%);
    font-weight: bold;
    font-size: 1.2rem;
}

.consultation-steps li:last-child {
    border-bottom: none;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.working-hours h4 {
    color: hsl(226, 30%, 57%);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0 0h20v20H0z" fill="none"/><path d="M10 0L20 10L10 20L0 10z" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    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(226, 30%, 80%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(226, 30%, 57%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(226, 30%, 80%);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    color: hsl(226, 30%, 70%);
    line-height: 1.5;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 10%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 25%; right: 5%; animation-delay: 3s; }

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

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

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

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

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

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid hsl(226, 30%, 57%);
    color: hsl(226, 30%, 57%);
    border-radius: 30px;
    padding: 12px 30px;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    background: hsl(226, 30%, 57%);
    color: white;
    border-color: hsl(226, 30%, 57%);
    transform: translateY(-2px);
}

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(226, 30%, 57%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: white;
    color: hsl(226, 30%, 32%);
    transform: rotate(360deg);
}

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

.service-description {
    color: hsl(226, 30%, 80%);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(226, 30%, 57%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.9rem;
    color: hsl(226, 30%, 70%);
    font-style: italic;
}

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0,10 L20,10" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><path d="M10,0 L10,20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>');
    opacity: 0.3;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(226, 30%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(226, 30%, 57%);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.story-title {
    font-size: 2rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid hsl(226, 30%, 57%);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(226, 30%, 57%);
    margin-bottom: 15px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .mission-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .mission-image {
        height: 300px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
}

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10 0L20 10L10 20L0 10Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ice)"/></svg>') repeat;
    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.3);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-title::after {
    content: '⛸️';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

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

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

.email-input {
    padding: 18px 25px;
    border: 2px solid hsl(226, 30%, 57%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(226, 30%, 17%);
}

.email-input:focus {
    border-color: hsl(226, 30%, 32%);
    box-shadow: 0 0 0 3px rgba(65, 84, 118, 0.1);
    background: white;
}

.email-input::placeholder {
    color: hsl(226, 30%, 57%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(226, 30%, 32%) 0%, hsl(226, 30%, 57%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(65, 84, 118, 0.4);
    background: linear-gradient(45deg, hsl(226, 30%, 27%) 0%, hsl(226, 30%, 52%) 100%);
}

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

.benefits-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: hsl(226, 30%, 32%);
    font-size: 0.95rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        gap: 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }
}

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

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

.section-subtitle {
    color: hsl(226, 30%, 57%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid hsl(226, 30%, 57%);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(226, 30%, 32%);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: hsl(226, 30%, 57%);
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.client-info {
    border-top: 2px solid hsl(226, 30%, 57%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(226, 30%, 17%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.client-location {
    color: hsl(226, 30%, 57%);
    font-size: 0.95rem;
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(226, 30%, 57%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: hsl(226, 30%, 32%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: hsl(226, 30%, 57%);
    border: 2px solid white;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: white;
    border-color: hsl(226, 30%, 57%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin: 0 5px;
        padding: 2rem;
        min-height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(226, 30%, 17%) 0%, hsl(226, 30%, 22%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid hsl(226, 30%, 32%);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    color: hsl(226, 30%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h6 {
    color: hsl(226, 30%, 57%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: hsl(226, 30%, 57%);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(226, 30%, 57%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.85rem;
}

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

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(226, 30%, 57%);
    border: 2px solid hsl(226, 30%, 57%);
    color: #ffffff;
}

.btn-accept:hover {
    background: hsl(226, 30%, 47%);
    border-color: hsl(226, 30%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(226, 30%, 32%);
    color: hsl(226, 30%, 57%);
}

.btn-learn:hover {
    background: hsl(226, 30%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}