:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="hsl(214, 67%, 58%)" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="hsl(214, 67%, 33%)" opacity="0.05"/><circle cx="60" cy="30" r="1.5" fill="hsl(214, 67%, 58%)" opacity="0.08"/></svg>') repeat;
    pointer-events: none;
}

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

.about-title {
    color: hsl(214, 67%, 18%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 2px;
}

.about-text {
    color: hsl(214, 67%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(120deg, hsl(214, 67%, 58%) 0%, hsl(214, 67%, 33%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(214, 67%, 58%);
}

.mission-card {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, hsl(214, 67%, 58%) 0%, transparent 70%);
    opacity: 0.1;
}

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

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 3px solid hsl(214, 67%, 58%);
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.section-subtitle {
    color: hsl(214, 67%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .story-section,
    .mission-card {
        padding: 2rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(214, 67%, 58%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: hsl(214, 67%, 18%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantages-section {
        padding: 60px 0;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.stats-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.stats-counter:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.stats-counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: hsl(214, 67%, 58%);
}

.stats-icon {
    font-size: 3.5rem;
    color: hsl(214, 67%, 58%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stats-counter:hover .stats-icon {
    transform: scale(1.1);
    color: #ffffff;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon {
        font-size: 3rem;
    }
    
    .stats-counter {
        padding: 30px 20px;
    }
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

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

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

.privacy-policy h2 {
    color: #e74c3c;
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    border-radius: 5px;
}

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    padding: 0 10px;
}

.privacy-policy ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-policy li {
    margin-bottom: 8px;
    color: #555;
}

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

.privacy-policy .important {
    background: rgba(241, 196, 15, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #f1c40f;
    margin: 20px 0;
    font-weight: 500;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
    padding: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

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

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

.cookies-policy h2 {
    color: #1976d2;
    font-size: 1.8em;
    margin: 30px 0 15px 0;
    padding: 15px;
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    border-left: 5px solid #1976d2;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cookies-policy h3 {
    color: #388e3c;
    font-size: 1.4em;
    margin: 25px 0 10px 0;
    padding: 10px 0;
    border-bottom: 2px solid #4caf50;
}

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

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

.cookies-policy li {
    margin: 10px 0;
    padding: 8px;
    border-left: 3px solid #ff6b35;
    background: rgba(255,107,53,0.1);
    border-radius: 5px;
}

.highlight-box {
    background: linear-gradient(45deg, #fff3e0, #ffe0b2);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(255,152,0,0.2);
}

.gdpr-section {
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(76,175,80,0.2);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-table th {
    background: linear-gradient(45deg, #d32f2f, #f44336);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.cookie-table tr:nth-child(even) {
    background: #f9f9f9;
}

.cookie-table tr:hover {
    background: #f5f5f5;
    transform: scale(1.01);
    transition: all 0.3s ease;
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(214, 67%, 58%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    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 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

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

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(214, 67%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(88, 139, 221, 0.25);
    color: white;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(214, 67%, 58%);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: hsl(214, 67%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(214, 67%, 58%);
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(214, 67%, 58%), hsl(214, 67%, 45%));
    border: none;
    border-radius: 12px;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 30px rgba(88, 139, 221, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 139, 221, 0.6);
    background: linear-gradient(45deg, hsl(214, 67%, 65%), hsl(214, 67%, 52%));
}

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

.hours-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(214, 67%, 58%);
    font-size: 1.2rem;
}

.hours-text {
    opacity: 0.9;
    line-height: 1.8;
}

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

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="hsl(214, 67%, 58%)" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="hsl(214, 67%, 33%)" opacity="0.05"/><circle cx="60" cy="30" r="1.5" fill="hsl(214, 67%, 58%)" opacity="0.08"/></svg>') repeat;
    pointer-events: none;
}

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

.about-title {
    color: hsl(214, 67%, 18%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 2px;
}

.about-text {
    color: hsl(214, 67%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(120deg, hsl(214, 67%, 58%) 0%, hsl(214, 67%, 33%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(214, 67%, 58%);
}

.mission-card {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, hsl(214, 67%, 58%) 0%, transparent 70%);
    opacity: 0.1;
}

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

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 3px solid hsl(214, 67%, 58%);
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.section-subtitle {
    color: hsl(214, 67%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .story-section,
    .mission-card {
        padding: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-subtitle {
    color: hsl(214, 67%, 58%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(214, 67%, 58%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(214, 67%, 33%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(214, 67%, 58%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(214, 67%, 18%);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(214, 67%, 33%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(214, 67%, 18%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.3);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(33, 37, 41, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(214, 67%, 58%), hsl(214, 67%, 48%));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    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.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(214, 67%, 65%), hsl(214, 67%, 55%));
}

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

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    text-align: center;
}

.benefits-list li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    margin: 0 15px 10px 0;
}

.benefits-list li::before {
    content: '🍕';
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .benefits-list li {
        display: block;
        margin: 0 0 10px 0;
        text-align: left;
    }
}

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

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

.section-subtitle {
    color: hsl(214, 67%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
    position: relative;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(214, 67%, 58%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(214, 67%, 58%);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    color: hsl(214, 67%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: hsl(214, 67%, 33%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(214, 67%, 58%);
    font-size: 0.9rem;
    font-weight: 500;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

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

.terms-title {
    text-align: center;
    font-size: 2.8rem;
    color: #c0392b;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 20px;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.6rem;
    color: #c0392b;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-text {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 15px;
    color: #34495e;
}

.highlight {
    background: linear-gradient(120deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.important-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-weight: bold;
    color: #856404;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #2c3e50;
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: white;
}

.faq-question:hover {
    background: rgba(255,255,255,0.1);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: hsl(214, 67%, 58%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.faq-cta h3 {
    color: hsl(214, 67%, 58%);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.contact-btn {
    background: hsl(214, 67%, 58%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: hsl(214, 67%, 48%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta {
        margin: 40px 15px 0;
        padding: 25px 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="hsl(214, 67%, 58%)" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="hsl(214, 67%, 33%)" opacity="0.05"/><circle cx="60" cy="30" r="1.5" fill="hsl(214, 67%, 58%)" opacity="0.08"/></svg>') repeat;
    pointer-events: none;
}

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

.about-title {
    color: hsl(214, 67%, 18%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 2px;
}

.about-text {
    color: hsl(214, 67%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(120deg, hsl(214, 67%, 58%) 0%, hsl(214, 67%, 33%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(214, 67%, 58%);
}

.mission-card {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, hsl(214, 67%, 58%) 0%, transparent 70%);
    opacity: 0.1;
}

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

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 3px solid hsl(214, 67%, 58%);
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.section-subtitle {
    color: hsl(214, 67%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .story-section,
    .mission-card {
        padding: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(214, 67%, 18%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.3);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(33, 37, 41, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(214, 67%, 58%), hsl(214, 67%, 48%));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    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.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(214, 67%, 65%), hsl(214, 67%, 55%));
}

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

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    text-align: center;
}

.benefits-list li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    margin: 0 15px 10px 0;
}

.benefits-list li::before {
    content: '🍕';
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .benefits-list li {
        display: block;
        margin: 0 0 10px 0;
        text-align: left;
    }
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}

:root {
            --primary-color: hsl(214, 67%, 33%);
            --secondary-color: hsl(214, 67%, 18%);
            --accent-color: hsl(214, 67%, 58%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 6px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                padding: 20px;
                border-radius: 10px;
            }
        }

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

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

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

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    shape-outside: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    float: right;
    margin-left: -150px;
    transform: rotate(3deg);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, hsl(214, 67%, 58%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: hsl(214, 67%, 58%);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

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

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

.benefits-list i {
    color: hsl(214, 67%, 58%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

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

.btn-primary-custom {
    background: hsl(214, 67%, 58%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: hsl(214, 67%, 48%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: hsl(214, 67%, 58%);
}

.btn-secondary-custom:hover {
    background: hsl(214, 67%, 58%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.floating-shape {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

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

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

.services-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-subtitle {
    color: hsl(214, 67%, 58%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(214, 67%, 58%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(214, 67%, 33%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(214, 67%, 58%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(214, 67%, 18%);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(214, 67%, 33%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

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

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

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

.section-subtitle {
    color: hsl(214, 67%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
    position: relative;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(214, 67%, 58%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(214, 67%, 58%);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    color: hsl(214, 67%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: hsl(214, 67%, 33%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(214, 67%, 58%);
    font-size: 0.9rem;
    font-weight: 500;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(214, 67%, 58%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    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 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

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

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(214, 67%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(88, 139, 221, 0.25);
    color: white;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(214, 67%, 58%);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: hsl(214, 67%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(214, 67%, 58%);
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(214, 67%, 58%), hsl(214, 67%, 45%));
    border: none;
    border-radius: 12px;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 30px rgba(88, 139, 221, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 139, 221, 0.6);
    background: linear-gradient(45deg, hsl(214, 67%, 65%), hsl(214, 67%, 52%));
}

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

.hours-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(214, 67%, 58%);
    font-size: 1.2rem;
}

.hours-text {
    opacity: 0.9;
    line-height: 1.8;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.stats-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.stats-counter:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.stats-counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: hsl(214, 67%, 58%);
}

.stats-icon {
    font-size: 3.5rem;
    color: hsl(214, 67%, 58%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stats-counter:hover .stats-icon {
    transform: scale(1.1);
    color: #ffffff;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon {
        font-size: 3rem;
    }
    
    .stats-counter {
        padding: 30px 20px;
    }
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.faq-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: white;
}

.faq-question:hover {
    background: rgba(255,255,255,0.1);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: hsl(214, 67%, 58%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.faq-cta h3 {
    color: hsl(214, 67%, 58%);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.contact-btn {
    background: hsl(214, 67%, 58%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: hsl(214, 67%, 48%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta {
        margin: 40px 15px 0;
        padding: 25px 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="hsl(214, 67%, 58%)" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="hsl(214, 67%, 33%)" opacity="0.05"/><circle cx="60" cy="30" r="1.5" fill="hsl(214, 67%, 58%)" opacity="0.08"/></svg>') repeat;
    pointer-events: none;
}

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

.about-title {
    color: hsl(214, 67%, 18%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 2px;
}

.about-text {
    color: hsl(214, 67%, 25%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(120deg, hsl(214, 67%, 58%) 0%, hsl(214, 67%, 33%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(214, 67%, 58%);
}

.mission-card {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, hsl(214, 67%, 58%) 0%, transparent 70%);
    opacity: 0.1;
}

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

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 3px solid hsl(214, 67%, 58%);
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.section-subtitle {
    color: hsl(214, 67%, 33%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .story-section,
    .mission-card {
        padding: 2rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(214, 67%, 58%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(214, 67%, 58%), hsl(214, 67%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: hsl(214, 67%, 18%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantages-section {
        padding: 60px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(214, 67%, 33%) 0%, hsl(214, 67%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: hsl(214, 67%, 18%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.3);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(33, 37, 41, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(214, 67%, 58%), hsl(214, 67%, 48%));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    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.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(214, 67%, 65%), hsl(214, 67%, 55%));
}

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

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    text-align: center;
}

.benefits-list li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    margin: 0 15px 10px 0;
}

.benefits-list li::before {
    content: '🍕';
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .benefits-list li {
        display: block;
        margin: 0 0 10px 0;
        text-align: left;
    }
}

footer {
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(214, 67%, 58%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-links h5 {
    color: hsl(214, 67%, 58%);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(214, 67%, 58%);
}

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

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

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

.footer-links ul li a:hover {
    color: hsl(214, 67%, 58%);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-contact a {
    color: hsl(214, 67%, 58%);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(214, 67%, 18%) 0%, hsl(214, 67%, 33%) 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(214, 67%, 58%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(214, 67%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(214, 67%, 58%);
    color: hsl(214, 67%, 58%);
}

.cookie-btn-secondary:hover {
    background: hsl(214, 67%, 58%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin: 5px;
        display: inline-block;
    }
}