:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(186, 85, 139, 0.05) 0%, rgba(186, 85, 139, 0.1) 100%);
}

.about-content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(186, 85, 139, 0.15);
    margin-bottom: 40px;
}

.about-title {
    color: hsl(318, 47%, 32%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.about-highlight {
    color: hsl(318, 47%, 47%);
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(135deg, hsl(318, 47%, 47%), hsl(318, 47%, 32%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(318, 47%, 47%);
    box-shadow: 0 10px 30px rgba(186, 85, 139, 0.1);
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .about-content {
        padding: 40px 25px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(318, 47%, 97%) 0%, hsl(318, 47%, 92%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(318, 47%, 72%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(318, 47%, 47%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    color: hsl(318, 47%, 32%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(318, 47%, 47%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid hsla(318, 47%, 72%, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 72%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: hsl(318, 47%, 47%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 72%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(318, 47%, 32%) 0%, hsl(318, 47%, 47%) 100%);
}

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

.advantage-title {
    color: hsl(318, 47%, 32%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(318, 47%, 40%);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

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

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .advantage-card {
        margin-bottom: 1.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(318, 47%, 72%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

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

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

.stat-description {
    font-size: 0.95rem;
    color: hsl(318, 47%, 90%);
    line-height: 1.5;
    opacity: 0.9;
}

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

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

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

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

.privacy-policy li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.highlight-box {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.2);
}

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

.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #3498db, transparent);
    margin: 30px 0;
    border: none;
}

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

.policy-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-header .subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    font-weight: 300;
}

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

.section-title {
    color: #27ae60;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #27ae60;
    padding-bottom: 10px;
}

.subsection-title {
    color: #34495e;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.cookie-type {
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.cookie-type h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.consent-notice {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.gdpr-badge {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin: 10px 5px;
}

ul {
    padding-left: 25px;
}

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

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 10px;
}

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(318, 47%, 72%);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: hsl(318, 47%, 72%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid hsl(318, 47%, 72%);
}

.working-hours h4 {
    color: hsl(318, 47%, 72%);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.working-hours p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-form h3 {
    color: hsl(318, 47%, 32%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

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

.form-label {
    color: hsl(318, 47%, 32%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid hsl(318, 47%, 72%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(318, 47%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(318, 47%, 47%);
    box-shadow: 0 0 0 3px rgba(186, 85, 147, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(318, 47%, 60%);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(186, 85, 147, 0.3);
    background: linear-gradient(135deg, hsl(318, 47%, 52%) 0%, hsl(318, 47%, 37%) 100%);
}

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

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(186, 85, 139, 0.05) 0%, rgba(186, 85, 139, 0.1) 100%);
}

.about-content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(186, 85, 139, 0.15);
    margin-bottom: 40px;
}

.about-title {
    color: hsl(318, 47%, 32%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.about-highlight {
    color: hsl(318, 47%, 47%);
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(135deg, hsl(318, 47%, 47%), hsl(318, 47%, 32%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(318, 47%, 47%);
    box-shadow: 0 10px 30px rgba(186, 85, 139, 0.1);
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .about-content {
        padding: 40px 25px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }
}

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(318, 47%, 97%) 0%, hsl(318, 47%, 95%) 100%);
    padding: 80px 0;
}

.section-title {
    color: hsl(318, 47%, 32%);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(198, 95, 146, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(198, 95, 146, 0.2);
    border-color: hsl(318, 47%, 72%);
}

.service-icon {
    color: hsl(318, 47%, 47%);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    color: hsl(318, 47%, 32%);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.service-price {
    color: hsl(318, 47%, 47%);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(318, 47%, 97%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: hsl(318, 47%, 32%);
    border-left: 4px solid hsl(318, 47%, 72%);
}

.service-card .row {
    align-items: flex-start;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 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="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.15"/><circle cx="60" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="70" r="1.2" fill="white" opacity="0.12"/></svg>');
    animation: float 20s infinite linear;
}

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

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(318, 47%, 32%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

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

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

.email-input {
    padding: 18px 25px;
    border: 2px solid hsl(318, 47%, 72%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: hsl(318, 47%, 32%);
}

.email-input:focus {
    border-color: hsl(318, 47%, 47%);
    box-shadow: 0 0 0 4px rgba(186, 85, 147, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(318, 47%, 72%);
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(186, 85, 147, 0.4);
    background: linear-gradient(135deg, hsl(318, 47%, 52%) 0%, hsl(318, 47%, 37%) 100%);
}

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

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

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(318, 47%, 47%);
    margin-top: 20px;
    line-height: 1.4;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.client-info {
    border-top: 2px solid hsl(318, 47%, 72%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(318, 47%, 32%);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
}

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

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

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.terms-title {
    text-align: center;
    color: #34495e;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

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

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

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

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

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #f39c12;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    border-color: transparent;
}

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

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: hsl(318, 47%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    color: hsl(318, 47%, 32%);
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(186, 85, 139, 0.05) 0%, rgba(186, 85, 139, 0.1) 100%);
}

.about-content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(186, 85, 139, 0.15);
    margin-bottom: 40px;
}

.about-title {
    color: hsl(318, 47%, 32%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.about-highlight {
    color: hsl(318, 47%, 47%);
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(135deg, hsl(318, 47%, 47%), hsl(318, 47%, 32%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(318, 47%, 47%);
    box-shadow: 0 10px 30px rgba(186, 85, 139, 0.1);
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .about-content {
        padding: 40px 25px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 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="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.15"/><circle cx="60" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="70" r="1.2" fill="white" opacity="0.12"/></svg>');
    animation: float 20s infinite linear;
}

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

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(318, 47%, 32%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

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

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

.email-input {
    padding: 18px 25px;
    border: 2px solid hsl(318, 47%, 72%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: hsl(318, 47%, 32%);
}

.email-input:focus {
    border-color: hsl(318, 47%, 47%);
    box-shadow: 0 0 0 4px rgba(186, 85, 147, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(318, 47%, 72%);
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(186, 85, 147, 0.4);
    background: linear-gradient(135deg, hsl(318, 47%, 52%) 0%, hsl(318, 47%, 37%) 100%);
}

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

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

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(318, 47%, 47%);
    margin-top: 20px;
    line-height: 1.4;
}

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

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}

:root {
            --primary-color: hsl(318, 47%, 47%);
            --secondary-color: hsl(318, 47%, 32%);
            --accent-color: hsl(318, 47%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: hsl(318, 47%, 72%);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: hsl(318, 47%, 72%);
    border-radius: 50%;
    opacity: 0.08;
    transform: rotate(25deg);
}

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

.hero-image-wrapper {
    position: relative;
    margin-top: -60px;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px 5px 20px 5px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    shape-outside: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    float: right;
    margin-left: -80px;
    margin-bottom: 20px;
}

.hero-text-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin-top: -100px;
    margin-left: -40px;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(318, 47%, 32%);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(318, 47%, 47%);
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
    text-align: justify;
}

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(318, 47%, 32%);
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.benefits-list li::before {
    content: '\f26c';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: hsl(318, 47%, 47%);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(318, 47%, 47%), hsl(318, 47%, 32%));
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(318, 47%, 47%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(318, 47%, 47%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(318, 47%, 47%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.floating-elements {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 1;
}

.floating-icon {
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: hsl(318, 47%, 47%);
}

.floating-icon:nth-child(2) {
    animation-delay: -1s;
    margin-left: 30px;
}

.floating-icon:nth-child(3) {
    animation-delay: -2s;
    margin-left: -15px;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        height: 350px;
        margin-left: 0;
        float: none;
        shape-outside: none;
    }
    
    .hero-text-content {
        margin-top: 20px;
        margin-left: 0;
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .floating-elements {
        display: none;
    }
}

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

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

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

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    border-color: transparent;
}

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

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: hsl(318, 47%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    color: hsl(318, 47%, 32%);
}

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

.services-section {
    background: linear-gradient(135deg, hsl(318, 47%, 97%) 0%, hsl(318, 47%, 95%) 100%);
    padding: 80px 0;
}

.section-title {
    color: hsl(318, 47%, 32%);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(198, 95, 146, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(198, 95, 146, 0.2);
    border-color: hsl(318, 47%, 72%);
}

.service-icon {
    color: hsl(318, 47%, 47%);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    color: hsl(318, 47%, 32%);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.service-price {
    color: hsl(318, 47%, 47%);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(318, 47%, 97%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: hsl(318, 47%, 32%);
    border-left: 4px solid hsl(318, 47%, 72%);
}

.service-card .row {
    align-items: flex-start;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(186, 85, 139, 0.05) 0%, rgba(186, 85, 139, 0.1) 100%);
}

.about-content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(186, 85, 139, 0.15);
    margin-bottom: 40px;
}

.about-title {
    color: hsl(318, 47%, 32%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

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

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

.about-highlight {
    color: hsl(318, 47%, 47%);
    font-weight: 600;
}

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

.about-image:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(135deg, hsl(318, 47%, 47%), hsl(318, 47%, 32%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(318, 47%, 47%);
    box-shadow: 0 10px 30px rgba(186, 85, 139, 0.1);
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .about-content {
        padding: 40px 25px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.client-info {
    border-top: 2px solid hsl(318, 47%, 72%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(318, 47%, 32%);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
}

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 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="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.15"/><circle cx="60" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="70" r="1.2" fill="white" opacity="0.12"/></svg>');
    animation: float 20s infinite linear;
}

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

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(318, 47%, 32%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

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

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

.email-input {
    padding: 18px 25px;
    border: 2px solid hsl(318, 47%, 72%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: hsl(318, 47%, 32%);
}

.email-input:focus {
    border-color: hsl(318, 47%, 47%);
    box-shadow: 0 0 0 4px rgba(186, 85, 147, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(318, 47%, 72%);
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(186, 85, 147, 0.4);
    background: linear-gradient(135deg, hsl(318, 47%, 52%) 0%, hsl(318, 47%, 37%) 100%);
}

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

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

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(318, 47%, 47%);
    margin-top: 20px;
    line-height: 1.4;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(318, 47%, 97%) 0%, hsl(318, 47%, 92%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(318, 47%, 72%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(318, 47%, 47%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    color: hsl(318, 47%, 32%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(318, 47%, 47%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid hsla(318, 47%, 72%, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 72%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: hsl(318, 47%, 47%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 72%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(318, 47%, 32%) 0%, hsl(318, 47%, 47%) 100%);
}

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

.advantage-title {
    color: hsl(318, 47%, 32%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(318, 47%, 40%);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

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

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .advantage-card {
        margin-bottom: 1.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(318, 47%, 72%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

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

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

.stat-description {
    font-size: 0.95rem;
    color: hsl(318, 47%, 90%);
    line-height: 1.5;
    opacity: 0.9;
}

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

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

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(318, 47%, 72%);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: hsl(318, 47%, 72%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid hsl(318, 47%, 72%);
}

.working-hours h4 {
    color: hsl(318, 47%, 72%);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.working-hours p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-form h3 {
    color: hsl(318, 47%, 32%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

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

.form-label {
    color: hsl(318, 47%, 32%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid hsl(318, 47%, 72%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(318, 47%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(318, 47%, 47%);
    box-shadow: 0 0 0 3px rgba(186, 85, 147, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(318, 47%, 60%);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(318, 47%, 47%) 0%, hsl(318, 47%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(186, 85, 147, 0.3);
    background: linear-gradient(135deg, hsl(318, 47%, 52%) 0%, hsl(318, 47%, 37%) 100%);
}

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

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

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

:root {
  --primary-color: hsl(318, 47%, 47%);
  --secondary-color: hsl(318, 47%, 32%);
  --accent-color: hsl(318, 47%, 72%);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

footer .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

footer .footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

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

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-notice {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.cookie-notice h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-notice .btn-accept {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cookie-notice .btn-learn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.cookie-notice.hidden {
  display: none;
}