:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

.about-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.about-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: hsl(208, 54%, 27%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

.story-block {
    margin-bottom: 40px;
}

.story-title {
    color: hsl(208, 54%, 42%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-card {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(208, 54%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    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="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(208, 54%, 67%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(208, 54%, 42%), hsl(208, 54%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

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

.advantage-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(208, 54%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(208, 54%, 67%);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

.privacy-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.privacy-header p {
    font-size: 1.1em;
    opacity: 0.9;
}

.privacy-section {
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
}

.privacy-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #764ba2;
}

.privacy-section h3 {
    color: #555;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.privacy-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.privacy-list li::before {
    content: '🍕';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.2em;
}

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

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

.rights-card {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #667eea;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 10px;
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

.cookies-policy h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #ff6b6b);
    margin: 20px auto;
    border-radius: 2px;
}

.cookies-policy h2 {
    color: #c62828;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #d32f2f;
    background: rgba(255,255,255,0.7);
    padding: 15px 20px;
    border-radius: 8px;
}

.cookies-policy h3 {
    color: #b71c1c;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dotted #d32f2f;
}

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

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

.cookies-policy li {
    margin-bottom: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.9);
    border-left: 4px solid #ff5722;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    list-style: none;
    position: relative;
}

.cookies-policy li::before {
    content: '🍕';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.cookie-type {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(255,152,0,0.2);
}

.cookie-type h4 {
    color: #e65100;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
}

.highlight-box strong {
    color: #2e7d32;
    font-size: 1.1em;
}

.gdpr-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(33,150,243,0.2);
    text-align: center;
}

.gdpr-notice strong {
    color: #1565c0;
    font-size: 1.2em;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.contact-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s infinite linear;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, white, hsl(208, 54%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: hsl(208, 54%, 27%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(208, 54%, 67%);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(208, 54%, 27%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(208, 54%, 42%);
    box-shadow: 0 0 20px rgba(52, 106, 154, 0.3);
    background: white;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(208, 54%, 67%);
    opacity: 0.8;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(208, 54%, 42%), hsl(208, 54%, 27%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 106, 154, 0.4);
    background: linear-gradient(45deg, hsl(208, 54%, 47%), hsl(208, 54%, 32%));
}

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

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    border-left: 4px solid hsl(208, 54%, 67%);
}

.working-hours h4 {
    color: hsl(208, 54%, 67%);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hours-list li:last-child {
    border-bottom: none;
}

.consultation-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-info h4 {
    color: hsl(208, 54%, 67%);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-card, .contact-info {
        margin-bottom: 30px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

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

.about-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.about-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: hsl(208, 54%, 27%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

.story-block {
    margin-bottom: 40px;
}

.story-title {
    color: hsl(208, 54%, 42%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-card {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(208, 54%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.services-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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="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="70" 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); }
}

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

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

.section-subtitle {
    color: hsl(208, 54%, 67%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(208, 54%, 67%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(208, 54%, 42%), hsl(208, 54%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(208, 54%, 67%), hsl(208, 54%, 42%));
}

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

.service-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-price {
    background: linear-gradient(135deg, hsl(208, 54%, 42%), hsl(208, 54%, 27%));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-conditions {
    background: hsl(208, 54%, 67%);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-top: 15px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

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

.newsletter-subtitle {
    color: hsl(208, 54%, 85%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(208, 54%, 67%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(208, 54%, 42%);
    box-shadow: 0 0 0 4px rgba(66, 139, 202, 0.2);
    transform: translateY(-2px);
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(208, 54%, 47%), hsl(208, 54%, 32%));
}

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

.benefits-list li {
    color: hsl(208, 54%, 27%);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 30px;
}

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

.privacy-text {
    font-size: 0.9rem;
    color: hsl(208, 54%, 50%);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .email-input, .subscribe-btn {
        padding: 15px 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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"><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="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(208, 54%, 87%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(208, 54%, 67%), hsl(208, 54%, 42%));
}

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

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

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

.customer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.customer-name {
    font-weight: 600;
    color: hsl(208, 54%, 27%);
    font-size: 1.1rem;
}

.customer-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.customer-location::before {
    content: '📍';
    margin-right: 5px;
}

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

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .customer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.terms-container {
    max-width: 1000px;
    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-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e74c3c;
}

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

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

.section-title {
    font-size: 1.4em;
    color: #27ae60;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

.terms-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.terms-text {
    margin-bottom: 20px;
    text-align: justify;
    padding: 0 10px;
}

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border-left: 5px solid #f39c12;
}

.important-notice {
    background: #ffe6e6;
    border: 1px solid #ff9999;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border-left: 5px solid #e74c3c;
    font-weight: 500;
}

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

li {
    margin-bottom: 8px;
    color: #34495e;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #bdc3c7;
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.faq-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-subtitle {
    color: hsl(208, 54%, 67%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(208, 54%, 42%), hsl(208, 54%, 67%));
}

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

.faq-question {
    color: hsl(208, 54%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question::before {
    content: '🍕';
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

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

.about-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.about-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: hsl(208, 54%, 27%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

.story-block {
    margin-bottom: 40px;
}

.story-title {
    color: hsl(208, 54%, 42%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-card {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(208, 54%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

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

.newsletter-subtitle {
    color: hsl(208, 54%, 85%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(208, 54%, 67%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(208, 54%, 42%);
    box-shadow: 0 0 0 4px rgba(66, 139, 202, 0.2);
    transform: translateY(-2px);
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(208, 54%, 47%), hsl(208, 54%, 32%));
}

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

.benefits-list li {
    color: hsl(208, 54%, 27%);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 30px;
}

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

.privacy-text {
    font-size: 0.9rem;
    color: hsl(208, 54%, 50%);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .email-input, .subscribe-btn {
        padding: 15px 20px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

:root {
            --primary-color: hsl(208, 54%, 42%);
            --secondary-color: hsl(208, 54%, 27%);
            --accent-color: hsl(208, 54%, 67%);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-text {
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

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

.hero-title {
    grid-area: title;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(208, 54%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-image {
    grid-area: image;
    text-align: center;
    position: relative;
}

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

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

.hero-content {
    grid-area: content;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.hero-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.hero-benefits li::before {
    content: "🍕";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.hero-cta {
    grid-area: cta;
    text-align: right;
}

.btn-hero {
    background: hsl(208, 54%, 67%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(208, 54%, 27%);
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    background: white;
    color: hsl(208, 54%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid hsl(208, 54%, 67%);
    color: hsl(208, 54%, 67%);
}

.btn-hero-secondary:hover {
    background: hsl(208, 54%, 67%);
    color: hsl(208, 54%, 27%);
}

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

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

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

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

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

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

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

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    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="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(208, 54%, 67%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(208, 54%, 42%), hsl(208, 54%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

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

.advantage-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-subtitle {
    color: hsl(208, 54%, 67%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(208, 54%, 42%), hsl(208, 54%, 67%));
}

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

.faq-question {
    color: hsl(208, 54%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question::before {
    content: '🍕';
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

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

.about-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.about-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: hsl(208, 54%, 27%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

.story-block {
    margin-bottom: 40px;
}

.story-title {
    color: hsl(208, 54%, 42%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-card {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(208, 54%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s infinite linear;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, white, hsl(208, 54%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: hsl(208, 54%, 27%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(208, 54%, 67%);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(208, 54%, 27%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(208, 54%, 42%);
    box-shadow: 0 0 20px rgba(52, 106, 154, 0.3);
    background: white;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(208, 54%, 67%);
    opacity: 0.8;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(208, 54%, 42%), hsl(208, 54%, 27%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 106, 154, 0.4);
    background: linear-gradient(45deg, hsl(208, 54%, 47%), hsl(208, 54%, 32%));
}

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

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    border-left: 4px solid hsl(208, 54%, 67%);
}

.working-hours h4 {
    color: hsl(208, 54%, 67%);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hours-list li:last-child {
    border-bottom: none;
}

.consultation-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-info h4 {
    color: hsl(208, 54%, 67%);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-card, .contact-info {
        margin-bottom: 30px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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"><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="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(208, 54%, 87%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(208, 54%, 67%), hsl(208, 54%, 42%));
}

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

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

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

.customer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.customer-name {
    font-weight: 600;
    color: hsl(208, 54%, 27%);
    font-size: 1.1rem;
}

.customer-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.customer-location::before {
    content: '📍';
    margin-right: 5px;
}

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

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .customer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(208, 54%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(208, 54%, 67%);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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="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="70" 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); }
}

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

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

.section-subtitle {
    color: hsl(208, 54%, 67%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(208, 54%, 67%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(208, 54%, 42%), hsl(208, 54%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(208, 54%, 67%), hsl(208, 54%, 42%));
}

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

.service-title {
    color: hsl(208, 54%, 27%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-price {
    background: linear-gradient(135deg, hsl(208, 54%, 42%), hsl(208, 54%, 27%));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-conditions {
    background: hsl(208, 54%, 67%);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-top: 15px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(208, 54%, 42%) 0%, hsl(208, 54%, 27%) 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="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

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

.newsletter-subtitle {
    color: hsl(208, 54%, 85%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(208, 54%, 67%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(208, 54%, 42%);
    box-shadow: 0 0 0 4px rgba(66, 139, 202, 0.2);
    transform: translateY(-2px);
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(208, 54%, 47%), hsl(208, 54%, 32%));
}

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

.benefits-list li {
    color: hsl(208, 54%, 27%);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 30px;
}

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

.privacy-text {
    font-size: 0.9rem;
    color: hsl(208, 54%, 50%);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .email-input, .subscribe-btn {
        padding: 15px 20px;
    }
}

footer {
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 22%) 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
  color: hsl(208, 54%, 67%);
  padding-left: 10px;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: hsl(208, 54%, 67%);
  margin-right: 10px;
  width: 20px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: hsl(208, 54%, 67%);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(208, 54%, 27%) 0%, hsl(208, 54%, 32%) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid hsl(208, 54%, 67%);
}

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

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

.cookie-btn {
  background: hsl(208, 54%, 42%);
  color: white;
  border: 2px solid hsl(208, 54%, 42%);
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background: hsl(208, 54%, 67%);
  border-color: hsl(208, 54%, 67%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
  background: transparent;
  color: hsl(208, 54%, 67%);
  border: 2px solid hsl(208, 54%, 67%);
}

.cookie-btn-outline:hover {
  background: hsl(208, 54%, 67%);
  color: white;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}