:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(313, 60%, 61%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 300;
}

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-block h3 {
    color: hsl(313, 60%, 61%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(175, 37, 123, 0.3), rgba(175, 37, 123, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.mission-values {
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mission-values h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.value-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.value-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(313, 60%, 61%) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 15%;
    left: 3%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .mission-values {
        padding: 1.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(313, 60%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(313, 60%, 61%), hsl(313, 60%, 85%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.advantage-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.advantage-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(even) {
    animation-delay: 0.4s;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60%;
    margin-left: 2rem;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60%;
    margin-right: 2rem;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(313, 60%, 36%), hsl(313, 60%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: hsl(313, 60%, 21%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(313, 60%, 61%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 2;
}

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 70px;
        margin-right: 1rem;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsl(313, 60%, 61%) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsl(313, 60%, 61%) 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
}

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

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

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

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid hsl(313, 60%, 61%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: white;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(313, 60%, 61%), hsl(313, 60%, 36%), hsl(313, 60%, 61%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: hsl(313, 60%, 61%);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-icon {
    color: white;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(313, 60%, 85%);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    margin-bottom: 3rem;
}

.stat-description {
    color: hsl(313, 60%, 75%);
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-circle {
        width: 130px;
        height: 130px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    color: #d4a574;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-policy h2 {
    color: #8b4d6b;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #d4a574;
    font-weight: 400;
}

.privacy-policy h3 {
    color: #a0647a;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

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

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

.privacy-policy li::marker {
    color: #d4a574;
}

.highlight-box {
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid #d4a574;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

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

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    margin: 40px 0;
    border: none;
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(45deg, #d4a574, #e8c5a0);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

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

.policy-header p {
    color: #fff;
    font-size: 1.2em;
    margin: 15px 0 0 0;
    opacity: 0.95;
}

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

.policy-section {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #d4a574;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.section-title {
    color: #8b4513;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e6d6;
    font-weight: 600;
}

.cookie-type {
    background: #faf7f2;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

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

.highlight-box {
    background: linear-gradient(135deg, #f9f1f8, #fdf7f0);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #e8c5a0;
}

.consent-notice {
    background: #8b4513;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.consent-notice h3 {
    margin: 0 0 15px 0;
    font-size: 1.5em;
}

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

.control-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0e6d6;
    position: relative;
    padding-left: 25px;
}

.control-list li:before {
    content: "✓";
    color: #d4a574;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.gdpr-compliance {
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.update-info {
    background: #f0e6d6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    font-style: italic;
}

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

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

.contact-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-subtitle {
    color: hsl(313, 60%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

.form-label {
    color: hsl(313, 60%, 21%);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: block;
}

.form-control {
    border: 2px solid hsl(313, 60%, 85%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(313, 60%, 21%);
    width: 100%;
}

.form-control:focus {
    border-color: hsl(313, 60%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(189, 76, 149, 0.25);
    outline: none;
    background: white;
    color: hsl(313, 60%, 21%);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(189, 76, 149, 0.4);
    background: linear-gradient(135deg, hsl(313, 60%, 71%) 0%, hsl(313, 60%, 46%) 100%);
}

.contact-info {
    color: white;
    padding: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    color: hsl(313, 60%, 85%);
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.info-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
    font-size: 1.1rem;
}

.consultation-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.consultation-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.consultation-description {
    color: hsl(313, 60%, 85%);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.about-section {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(313, 60%, 61%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 300;
}

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-block h3 {
    color: hsl(313, 60%, 61%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(175, 37, 123, 0.3), rgba(175, 37, 123, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.mission-values {
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mission-values h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.value-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.value-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(313, 60%, 61%) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 15%;
    left: 3%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .mission-values {
        padding: 1.5rem;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

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

.services-title {
    color: hsl(313, 60%, 21%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.services-subtitle {
    color: hsl(313, 60%, 36%);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(313, 60%, 61%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-content h4 {
    color: hsl(313, 60%, 21%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.service-price {
    color: hsl(313, 60%, 36%);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(313, 60%, 61%);
}

.service-conditions small {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(313, 60%, 61%);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: rgba(0,0,0,0.5);
}

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(313, 60%, 61%) 0%, hsl(313, 70%, 71%) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, hsl(313, 70%, 71%) 0%, hsl(313, 80%, 81%) 100%);
}

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

.testimonials-scroll-container {
    height: 600px;
    overflow-y: auto;
    padding: 0 20px;
    scrollbar-width: thin;
    scrollbar-color: hsl(313, 60%, 61%) transparent;
}

.testimonials-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
    background: hsl(313, 60%, 61%);
    border-radius: 10px;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(313, 60%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(313, 60%, 61%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(313, 60%, 36%);
    font-size: 1.1rem;
}

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

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll-container {
        height: 500px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #d4a574;
}

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

.terms-subtitle {
    font-size: 1.2rem;
    color: #a6677a;
    font-style: italic;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.7);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139,75,107,0.1);
    border-left: 5px solid #d4a574;
}

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

.section-title::before {
    content: "✦";
    margin-right: 10px;
    color: #d4a574;
    font-size: 1.2rem;
}

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

.highlight-box {
    background: #f9f1f4;
    border: 2px solid #d4a574;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 500;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.terms-list li::before {
    content: "❀";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 1.1rem;
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #8b4b6b;
    color: white;
    border-radius: 10px;
    font-weight: bold;
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    color: hsl(313, 60%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-question {
    color: hsl(313, 60%, 21%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: hsl(313, 60%, 61%);
}

.faq-answer {
    color: hsl(313, 60%, 30%);
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.highlight-text {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
}

.about-section {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(313, 60%, 61%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 300;
}

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-block h3 {
    color: hsl(313, 60%, 61%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(175, 37, 123, 0.3), rgba(175, 37, 123, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.mission-values {
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mission-values h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.value-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.value-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(313, 60%, 61%) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 15%;
    left: 3%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .mission-values {
        padding: 1.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(313, 60%, 61%);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: rgba(0,0,0,0.5);
}

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(313, 60%, 61%) 0%, hsl(313, 70%, 71%) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, hsl(313, 70%, 71%) 0%, hsl(313, 80%, 81%) 100%);
}

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(313, 60%, 36%);
            --secondary-color: hsl(313, 60%, 21%);
            --accent-color: hsl(313, 60%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 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 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 15px var(--accent-color));
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 10px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "title image"
        "subtitle image"
        "content cta";
    gap: 2rem;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    grid-area: title;
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    grid-area: subtitle;
    color: hsl(313, 60%, 61%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

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

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-content {
    grid-area: content;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.hero-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.hero-features li::before {
    content: '\f005';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: hsl(313, 60%, 61%);
    font-size: 1.2rem;
}

.hero-cta {
    grid-area: cta;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(313, 60%, 61%), hsl(313, 60%, 36%));
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    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);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(313, 60%, 71%), hsl(313, 60%, 46%));
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    color: hsl(313, 60%, 61%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

.contact-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

.contact-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-subtitle {
    color: hsl(313, 60%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

.form-label {
    color: hsl(313, 60%, 21%);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: block;
}

.form-control {
    border: 2px solid hsl(313, 60%, 85%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(313, 60%, 21%);
    width: 100%;
}

.form-control:focus {
    border-color: hsl(313, 60%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(189, 76, 149, 0.25);
    outline: none;
    background: white;
    color: hsl(313, 60%, 21%);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(189, 76, 149, 0.4);
    background: linear-gradient(135deg, hsl(313, 60%, 71%) 0%, hsl(313, 60%, 46%) 100%);
}

.contact-info {
    color: white;
    padding: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    color: hsl(313, 60%, 85%);
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.info-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
    font-size: 1.1rem;
}

.consultation-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.consultation-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.consultation-description {
    color: hsl(313, 60%, 85%);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(313, 60%, 61%);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: rgba(0,0,0,0.5);
}

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(313, 60%, 61%) 0%, hsl(313, 70%, 71%) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, hsl(313, 70%, 71%) 0%, hsl(313, 80%, 81%) 100%);
}

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.services-title {
    color: hsl(313, 60%, 21%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.services-subtitle {
    color: hsl(313, 60%, 36%);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(313, 60%, 61%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-content h4 {
    color: hsl(313, 60%, 21%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.service-price {
    color: hsl(313, 60%, 36%);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(313, 60%, 61%);
}

.service-conditions small {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(313, 60%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(313, 60%, 61%), hsl(313, 60%, 85%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.advantage-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.advantage-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(even) {
    animation-delay: 0.4s;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60%;
    margin-left: 2rem;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60%;
    margin-right: 2rem;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(313, 60%, 36%), hsl(313, 60%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: hsl(313, 60%, 21%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(313, 60%, 61%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 2;
}

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 70px;
        margin-right: 1rem;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    color: hsl(313, 60%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-question {
    color: hsl(313, 60%, 21%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: hsl(313, 60%, 61%);
}

.faq-answer {
    color: hsl(313, 60%, 30%);
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.highlight-text {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
}

.about-section {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(313, 60%, 61%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 300;
}

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-block h3 {
    color: hsl(313, 60%, 61%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(175, 37, 123, 0.3), rgba(175, 37, 123, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.mission-values {
    background: linear-gradient(135deg, hsl(313, 60%, 61%) 0%, hsl(313, 60%, 36%) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mission-values h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.value-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.value-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(313, 60%, 61%) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 15%;
    left: 3%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .mission-values {
        padding: 1.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsl(313, 60%, 61%) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsl(313, 60%, 61%) 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
}

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

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

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

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid hsl(313, 60%, 61%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: white;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(313, 60%, 61%), hsl(313, 60%, 36%), hsl(313, 60%, 61%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: hsl(313, 60%, 61%);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-icon {
    color: white;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(313, 60%, 85%);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    margin-bottom: 3rem;
}

.stat-description {
    color: hsl(313, 60%, 75%);
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-circle {
        width: 130px;
        height: 130px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

.testimonials-scroll-container {
    height: 600px;
    overflow-y: auto;
    padding: 0 20px;
    scrollbar-width: thin;
    scrollbar-color: hsl(313, 60%, 61%) transparent;
}

.testimonials-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
    background: hsl(313, 60%, 61%);
    border-radius: 10px;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(313, 60%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(313, 60%, 61%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(313, 60%, 36%);
    font-size: 1.1rem;
}

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

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll-container {
        height: 500px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(313, 60%, 21%) 0%, hsl(313, 60%, 36%) 100%);
}

.footer-link {
    color: hsl(313, 60%, 85%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: hsl(313, 60%, 61%);
    text-decoration: underline;
}

.footer-heading {
    color: hsl(313, 60%, 61%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsl(313, 60%, 85%);
    line-height: 1.6;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(313, 60%, 36%) 0%, hsl(313, 60%, 21%) 100%);
    color: white;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    background-color: hsl(313, 60%, 61%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: hsl(313, 60%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background-color: transparent;
    border: 2px solid hsl(313, 60%, 61%);
    color: hsl(313, 60%, 61%);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background-color: hsl(313, 60%, 61%);
    color: white;
    transform: translateY(-2px);
}