:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e2 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 {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    color: hsl(23, 37%, 29%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.story-title {
    color: hsl(23, 37%, 44%);
    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;
}

.highlight-text {
    color: hsl(23, 37%, 29%);
    font-weight: 600;
}

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

.value-item {
    background: hsl(23, 37%, 69%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

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

.value-desc {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        min-height: 300px;
    }
}

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

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

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    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);
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(23, 37%, 44%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%), hsl(23, 37%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(23, 37%, 29%), hsl(23, 37%, 44%));
}

.advantage-icon i {
    font-size: 28px;
    color: white;
}

.advantage-title {
    color: hsl(23, 37%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: hsl(23, 37%, 44%);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    padding: 100px 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="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); }
}

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

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

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(23, 37%, 69%);
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

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

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

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-item {
        margin-bottom: 30px;
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.privacy-policy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.privacy-policy h2 {
    color: #6c5ce7;
    font-size: 1.4em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-left: 5px solid #fd79a8;
    padding-left: 15px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

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

.privacy-policy ul {
    background: rgba(255,255,255,0.4);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

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

.privacy-policy li:before {
    content: "🍰";
    position: absolute;
    left: -15px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #636e72;
    background: rgba(255,255,255,0.6);
    padding: 10px;
    border-radius: 25px;
    margin-bottom: 30px;
}

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

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f4e6 0%, #fff8e7 100%);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(45deg, #8b4513, #d2691e);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.policy-header h1 {
    font-size: 2.8em;
    margin: 0 0 15px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-header p {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.95;
}

.policy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border-left: 5px solid #d2691e;
}

.policy-section h2 {
    color: #8b4513;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f4e4bc;
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: "🍪";
    margin-right: 10px;
    font-size: 1.2em;
}

.policy-section h3 {
    color: #a0522d;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

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

.cookie-type {
    background: #fdf8f0;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e8d5b7;
}

.cookie-type h4 {
    color: #8b4513;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff8f00;
    margin: 20px 0;
}

.consent-controls {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #4682b4;
    margin: 20px 0;
}

.gdpr-notice {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    margin: 25px 0;
}

ul {
    padding-left: 25px;
}

li {
    margin: 10px 0;
    color: #34495e;
}

strong {
    color: #8b4513;
    font-weight: 600;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-style: italic;
}

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

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

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

.contact-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h2 {
    color: hsl(23, 37%, 69%);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 35px;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: hsl(23, 37%, 29%);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid hsl(23, 37%, 69%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(23, 37%, 29%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(23, 37%, 44%);
    box-shadow: 0 0 0 3px rgba(139, 93, 69, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(23, 37%, 69%);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    border: none;
    padding: 15px 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;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 93, 69, 0.4);
    background: linear-gradient(135deg, hsl(23, 37%, 39%) 0%, hsl(23, 37%, 24%) 100%);
}

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

.working-hours h4 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.working-hours p {
    margin-bottom: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e2 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 {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    color: hsl(23, 37%, 29%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.story-title {
    color: hsl(23, 37%, 44%);
    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;
}

.highlight-text {
    color: hsl(23, 37%, 29%);
    font-weight: 600;
}

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

.value-item {
    background: hsl(23, 37%, 69%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

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

.value-desc {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        min-height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.services-section {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 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="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(23, 37%, 69%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.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(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(23, 37%, 69%);
}

.service-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%), hsl(23, 37%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-details {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(23, 37%, 29%);
    margin-bottom: 12px;
    line-height: 1.3;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(23, 37%, 44%);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-icon {
        align-self: center;
    }
}

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

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

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

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

.newsletter-subtitle {
    color: hsl(23, 37%, 44%);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    border: 2px solid hsl(23, 37%, 69%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: hsl(23, 37%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(139, 98, 70, 0.25);
    outline: none;
    background: white;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    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 {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 98, 70, 0.3);
    background: linear-gradient(135deg, hsl(23, 37%, 39%) 0%, hsl(23, 37%, 24%) 100%);
}

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

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(23, 37%, 44%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(23, 37%, 69%) 0%, hsl(23, 37%, 44%) 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 infinite linear;
}

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

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

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(23, 37%, 44%), hsl(23, 37%, 69%));
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(23, 37%, 29%);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

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

.client-info {
    border-top: 2px solid hsl(23, 37%, 69%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(23, 37%, 44%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.terms-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
}

.terms-section {
    background: #fff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #d4a574;
}

.section-title {
    font-size: 1.4rem;
    color: #8b4513;
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "🧁";
    margin-right: 10px;
    font-size: 1.2rem;
}

.terms-text {
    text-align: justify;
    margin-bottom: 15px;
    color: #495057;
}

.terms-list {
    padding-left: 25px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 8px;
    color: #495057;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.faq-section {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 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="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(23, 37%, 69%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.accordion-header {
    border: none;
}

.accordion-button {
    background: linear-gradient(135deg, hsl(23, 37%, 69%) 0%, hsl(23, 37%, 44%) 100%);
    border: none;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border-radius: 15px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

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

.accordion-button[aria-expanded="true"]::after {
    transform: scale(1.2) rotate(180deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(23, 37%, 29%);
    border-top: 3px solid hsl(23, 37%, 69%);
}

.accordion-body strong {
    color: hsl(23, 37%, 44%);
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(120deg, hsl(23, 37%, 69%) 0%, transparent 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .accordion-button {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 25px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e2 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 {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    color: hsl(23, 37%, 29%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.story-title {
    color: hsl(23, 37%, 44%);
    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;
}

.highlight-text {
    color: hsl(23, 37%, 29%);
    font-weight: 600;
}

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

.value-item {
    background: hsl(23, 37%, 69%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

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

.value-desc {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        min-height: 300px;
    }
}

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

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

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

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

.newsletter-subtitle {
    color: hsl(23, 37%, 44%);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    border: 2px solid hsl(23, 37%, 69%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: hsl(23, 37%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(139, 98, 70, 0.25);
    outline: none;
    background: white;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    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 {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 98, 70, 0.3);
    background: linear-gradient(135deg, hsl(23, 37%, 39%) 0%, hsl(23, 37%, 24%) 100%);
}

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

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(23, 37%, 44%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }

:root {
            --primary-color: hsl(23, 37%, 44%);
            --secondary-color: hsl(23, 37%, 29%);
            --accent-color: hsl(23, 37%, 69%);
        }
        
        .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: 600;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .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: 15px;
        }
        
        .company-name {
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

.hero-section {
    background: linear-gradient(135deg, hsl(23, 37%, 69%) 0%, hsl(23, 37%, 44%) 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.hero-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.hero-features li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-features li:nth-child(2) { animation-delay: 0.7s; }
.hero-features li:nth-child(3) { animation-delay: 0.8s; }
.hero-features li:nth-child(4) { animation-delay: 0.9s; }
.hero-features li:nth-child(5) { animation-delay: 1s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-features .bi {
    color: hsl(23, 37%, 29%);
    margin-right: 15px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons {
    margin-top: 50px;
    animation: slideInUp 1s ease-out 1.1s both;
}

.btn-primary-custom {
    background: hsl(23, 37%, 29%);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 20px;
        text-align: center;
    }
    
    .hero-features {
        text-align: center;
    }
    
    .hero-features li {
        justify-content: center;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 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="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(23, 37%, 69%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.accordion-header {
    border: none;
}

.accordion-button {
    background: linear-gradient(135deg, hsl(23, 37%, 69%) 0%, hsl(23, 37%, 44%) 100%);
    border: none;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border-radius: 15px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

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

.accordion-button[aria-expanded="true"]::after {
    transform: scale(1.2) rotate(180deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(23, 37%, 29%);
    border-top: 3px solid hsl(23, 37%, 69%);
}

.accordion-body strong {
    color: hsl(23, 37%, 44%);
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(120deg, hsl(23, 37%, 69%) 0%, transparent 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .accordion-button {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 25px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

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

.contact-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h2 {
    color: hsl(23, 37%, 69%);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 35px;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: hsl(23, 37%, 29%);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid hsl(23, 37%, 69%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(23, 37%, 29%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(23, 37%, 44%);
    box-shadow: 0 0 0 3px rgba(139, 93, 69, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(23, 37%, 69%);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    border: none;
    padding: 15px 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;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 93, 69, 0.4);
    background: linear-gradient(135deg, hsl(23, 37%, 39%) 0%, hsl(23, 37%, 24%) 100%);
}

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

.working-hours h4 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.working-hours p {
    margin-bottom: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

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

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

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

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

.newsletter-subtitle {
    color: hsl(23, 37%, 44%);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    border: 2px solid hsl(23, 37%, 69%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: hsl(23, 37%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(139, 98, 70, 0.25);
    outline: none;
    background: white;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    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 {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 98, 70, 0.3);
    background: linear-gradient(135deg, hsl(23, 37%, 39%) 0%, hsl(23, 37%, 24%) 100%);
}

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

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(23, 37%, 44%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e2 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 {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    color: hsl(23, 37%, 29%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.story-title {
    color: hsl(23, 37%, 44%);
    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;
}

.highlight-text {
    color: hsl(23, 37%, 29%);
    font-weight: 600;
}

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

.value-item {
    background: hsl(23, 37%, 69%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

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

.value-desc {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-text {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        min-height: 300px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(23, 37%, 69%) 0%, hsl(23, 37%, 44%) 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 infinite linear;
}

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

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

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(23, 37%, 44%), hsl(23, 37%, 69%));
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(23, 37%, 29%);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

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

.client-info {
    border-top: 2px solid hsl(23, 37%, 69%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(23, 37%, 44%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.services-section {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 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="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, hsl(23, 37%, 69%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.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(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(23, 37%, 69%);
}

.service-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%), hsl(23, 37%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-details {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(23, 37%, 29%);
    margin-bottom: 12px;
    line-height: 1.3;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(23, 37%, 44%);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-icon {
        align-self: center;
    }
}

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

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

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    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);
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(23, 37%, 44%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%), hsl(23, 37%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(23, 37%, 29%), hsl(23, 37%, 44%));
}

.advantage-icon i {
    font-size: 28px;
    color: white;
}

.advantage-title {
    color: hsl(23, 37%, 29%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: hsl(23, 37%, 44%);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    padding: 100px 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="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); }
}

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

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

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(23, 37%, 69%);
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

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

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

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-item {
        margin-bottom: 30px;
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(23, 37%, 29%) 0%, hsl(23, 37%, 44%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(23, 37%, 69%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(23, 37%, 69%);
  }
  
  footer p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  footer a:hover {
    color: hsl(23, 37%, 69%);
    padding-left: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .contact-icon {
    width: 20px;
    margin-right: 10px;
    color: hsl(23, 37%, 69%);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(23, 37%, 44%) 0%, hsl(23, 37%, 29%) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
  }
  
  .cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cookie-notice h6 {
    color: hsl(23, 37%, 69%);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cookie-notice p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .cookie-btn.outline {
    background: transparent;
    color: hsl(23, 37%, 69%);
    border: 2px solid hsl(23, 37%, 69%);
  }
  
  .cookie-btn.outline:hover {
    background: hsl(23, 37%, 69%);
    color: hsl(23, 37%, 29%);
  }
  
  @media (max-width: 768px) {
    .cookie-notice {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-btn {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.8rem;
    }
  }