:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(186, 85, 135, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(329, 41%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 2px;
}

.content-row {
    margin-bottom: 80px;
    align-items: center;
}

.content-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 135, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 85, 135, 0.1);
    position: relative;
    z-index: 2;
}

.content-text h3 {
    color: hsl(329, 41%, 35%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 3px;
}

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

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(186, 85, 135, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(186, 85, 135, 0.2);
}

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

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

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(186, 85, 135, 0.1), rgba(186, 85, 135, 0.05));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.content-image:hover::before {
    opacity: 0;
}

.reverse-row {
    flex-direction: row-reverse;
}

.reverse-row .content-image {
    transform: perspective(1000px) rotateY(-5deg);
}

.reverse-row .content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.reverse-row .content-text h3::before {
    left: auto;
    right: -20px;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(329, 41%, 75%), hsl(329, 41%, 50%));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
    width: 120px;
    height: 120px;
}

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

.highlight-text {
    color: hsl(329, 41%, 50%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(329, 41%, 75%), transparent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-row {
        margin-bottom: 50px;
    }
    
    .content-text {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-text h3 {
        font-size: 1.8rem;
    }
    
    .content-image {
        transform: none;
        margin-bottom: 20px;
    }
    
    .reverse-row {
        flex-direction: column;
    }
    
    .reverse-row .content-image {
        transform: none;
    }
    
    .content-image img {
        height: 300px;
    }
    
    .floating-element {
        display: none;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(329, 41%, 98%) 0%, hsl(329, 41%, 95%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(329, 41%, 75%, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.section-title {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(329, 41%, 50%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(199, 90, 145, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(199, 90, 145, 0.2);
    border-color: hsl(329, 41%, 75%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(199, 90, 145, 0.3);
}

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

.advantage-title {
    color: hsl(329, 41%, 35%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.advantage-description {
    color: hsl(329, 41%, 40%);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.zigzag-left {
    padding-right: 60px;
}

.zigzag-right {
    padding-left: 60px;
}

@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    color: white;
}

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

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

.stats-icon {
    font-size: 3rem;
    color: hsl(329, 41%, 75%);
    margin-bottom: 20px;
    display: block;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-label {
    font-size: 1.1rem;
    color: hsl(329, 41%, 75%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

.privacy-header p {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.9;
}

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

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

.section-title:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05em;
}

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

.privacy-list li {
    background: #f8f9ff;
    margin: 10px 0;
    padding: 15px 20px;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.privacy-list li:hover {
    background: #e8f0fe;
    transform: translateX(5px);
}

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #e17055;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-box h3 {
    color: #2d3436;
    margin-top: 0;
    font-weight: 600;
}

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

.data-type-card {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.data-type-card:hover {
    transform: translateY(-5px);
}

.data-type-card h4 {
    margin-top: 0;
    font-size: 1.3em;
}

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

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

.policy-header h1 {
    font-size: 2.8em;
    margin: 0 0 15px 0;
    font-weight: 300;
    letter-spacing: -1px;
}

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

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

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

.section-title:first-child {
    margin-top: 0;
}

.cookie-type {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(240, 147, 251, 0.3);
}

.cookie-type h4 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.cookie-type p {
    margin: 0;
    opacity: 0.95;
}

.highlight-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.consent-notice {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #333;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3);
    border-left: 5px solid #fa709a;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3);
}

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

ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
}

p {
    margin: 15px 0;
    text-align: justify;
}

strong {
    color: #667eea;
}

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

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

.form-label {
    font-weight: 600;
    color: hsl(329, 41%, 35%);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(329, 41%, 85%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
}

.form-control:focus {
    border-color: hsl(329, 41%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(186, 85, 134, 0.25);
    background: white;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(186, 85, 134, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 85, 134, 0.4);
    background: linear-gradient(135deg, hsl(329, 41%, 55%) 0%, hsl(329, 41%, 40%) 100%);
}

.contact-info {
    color: white;
    text-align: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: hsl(329, 41%, 85%);
    margin-bottom: 15px;
}

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

.info-text {
    font-size: 1rem;
    color: hsl(329, 41%, 85%);
    line-height: 1.6;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: hsl(329, 41%, 85%);
}

.step-number {
    background: hsl(329, 41%, 50%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .consultation-process {
        padding: 25px 20px;
    }
}

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(186, 85, 135, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(329, 41%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 2px;
}

.content-row {
    margin-bottom: 80px;
    align-items: center;
}

.content-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 135, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 85, 135, 0.1);
    position: relative;
    z-index: 2;
}

.content-text h3 {
    color: hsl(329, 41%, 35%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 3px;
}

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

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(186, 85, 135, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(186, 85, 135, 0.2);
}

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

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

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(186, 85, 135, 0.1), rgba(186, 85, 135, 0.05));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.content-image:hover::before {
    opacity: 0;
}

.reverse-row {
    flex-direction: row-reverse;
}

.reverse-row .content-image {
    transform: perspective(1000px) rotateY(-5deg);
}

.reverse-row .content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.reverse-row .content-text h3::before {
    left: auto;
    right: -20px;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(329, 41%, 75%), hsl(329, 41%, 50%));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
    width: 120px;
    height: 120px;
}

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

.highlight-text {
    color: hsl(329, 41%, 50%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(329, 41%, 75%), transparent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-row {
        margin-bottom: 50px;
    }
    
    .content-text {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-text h3 {
        font-size: 1.8rem;
    }
    
    .content-image {
        transform: none;
        margin-bottom: 20px;
    }
    
    .reverse-row {
        flex-direction: column;
    }
    
    .reverse-row .content-image {
        transform: none;
    }
    
    .content-image img {
        height: 300px;
    }
    
    .floating-element {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.services-section h2 {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 2px;
}

.services-section .lead {
    color: #6c757d;
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 3px solid hsl(329, 41%, 75%);
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 5px;
    border-radius: 25px 25px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: hsl(329, 41%, 50%);
    background-color: hsl(329, 41%, 95%);
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: hsl(329, 41%, 50%);
    border-color: hsl(329, 41%, 50%);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(329, 41%, 75%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

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

.service-card h4 {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: hsl(329, 41%, 50%);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    color: #6c757d;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(329, 41%, 50%);
    font-weight: bold;
}

.btn-service {
    background: linear-gradient(135deg, hsl(329, 41%, 50%), hsl(329, 41%, 35%));
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
}

.conditions-box {
    background: hsl(329, 41%, 95%);
    border-left: 5px solid hsl(329, 41%, 50%);
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 10px 10px 0;
}

.conditions-box h5 {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    margin-bottom: 15px;
}

.conditions-box ul {
    margin-bottom: 0;
    color: #6c757d;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        margin: 0 2px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.newsletter-subtitle {
    color: hsl(329, 41%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    color: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(329, 41%, 75%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: hsl(329, 41%, 35%);
    font-weight: bold;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    padding-right: 160px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: hsl(329, 41%, 75%);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .email-input {
        padding-right: 25px;
        margin-bottom: 15px;
    }
    
    .subscribe-btn {
        position: static;
        transform: none;
        width: 100%;
        padding: 15px;
    }
    
    .subscribe-btn:hover {
        transform: scale(1.02);
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></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(329, 41%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

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

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

.client-info {
    border-top: 2px solid hsl(329, 41%, 75%);
    padding-top: 1rem;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(329, 41%, 35%);
    margin-bottom: 0.3rem;
}

.client-location {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

.rating {
    margin-bottom: 1rem;
}

.rating .star {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 2px;
}

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

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

.terms-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.terms-section {
    margin-bottom: 40px;
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
}

.section-title {
    font-size: 1.6rem;
    color: #2980b9;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

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

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

.terms-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    position: relative;
}

.terms-list li::marker {
    color: #3498db;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 8px 20px rgba(116, 185, 255, 0.3);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #bdc3c7;
    font-size: 1.1rem;
}

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

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(329, 41%, 95%) 0%, hsl(329, 41%, 98%) 100%);
    padding: 80px 0;
}

.faq-title {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-subtitle {
    color: hsl(329, 41%, 50%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.faq-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.faq-question {
    background: hsl(329, 41%, 50%);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: hsl(329, 41%, 35%);
    line-height: 1.6;
    margin: 0;
}

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

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

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(186, 85, 135, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(329, 41%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 2px;
}

.content-row {
    margin-bottom: 80px;
    align-items: center;
}

.content-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 135, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 85, 135, 0.1);
    position: relative;
    z-index: 2;
}

.content-text h3 {
    color: hsl(329, 41%, 35%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 3px;
}

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

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(186, 85, 135, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(186, 85, 135, 0.2);
}

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

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

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(186, 85, 135, 0.1), rgba(186, 85, 135, 0.05));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.content-image:hover::before {
    opacity: 0;
}

.reverse-row {
    flex-direction: row-reverse;
}

.reverse-row .content-image {
    transform: perspective(1000px) rotateY(-5deg);
}

.reverse-row .content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.reverse-row .content-text h3::before {
    left: auto;
    right: -20px;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(329, 41%, 75%), hsl(329, 41%, 50%));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
    width: 120px;
    height: 120px;
}

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

.highlight-text {
    color: hsl(329, 41%, 50%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(329, 41%, 75%), transparent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-row {
        margin-bottom: 50px;
    }
    
    .content-text {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-text h3 {
        font-size: 1.8rem;
    }
    
    .content-image {
        transform: none;
        margin-bottom: 20px;
    }
    
    .reverse-row {
        flex-direction: column;
    }
    
    .reverse-row .content-image {
        transform: none;
    }
    
    .content-image img {
        height: 300px;
    }
    
    .floating-element {
        display: none;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.newsletter-subtitle {
    color: hsl(329, 41%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    color: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(329, 41%, 75%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: hsl(329, 41%, 35%);
    font-weight: bold;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    padding-right: 160px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: hsl(329, 41%, 75%);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .email-input {
        padding-right: 25px;
        margin-bottom: 15px;
    }
    
    .subscribe-btn {
        position: static;
        transform: none;
        width: 100%;
        padding: 15px;
    }
    
    .subscribe-btn:hover {
        transform: scale(1.02);
    }
}

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(329, 41%, 50%);
            --secondary-color: hsl(329, 41%, 35%);
            --accent-color: hsl(329, 41%, 75%);
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.8rem;
        }

        .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(300deg);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    overflow: hidden;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

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

.hero-image-wrapper {
    position: relative;
    margin-top: -80px;
    margin-left: -40px;
}

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(329, 41%, 50%);
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.hero-benefits li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #444;
    position: relative;
    padding-left: 35px;
}

.hero-benefits li::before {
    content: '\F284';
    font-family: 'Bootstrap Icons';
    color: hsl(329, 41%, 50%);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 10px;
}

.hero-cta {
    margin-top: 40px;
}

.btn-primary-custom {
    background: hsl(329, 41%, 50%);
    border: none;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: hsl(329, 41%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(329, 41%, 50%);
    color: hsl(329, 41%, 50%);
    padding: 13px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.floating-element {
    position: absolute;
    background: hsl(329, 41%, 75%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

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

@media (max-width: 992px) {
    .hero-image {
        float: none;
        shape-outside: none;
        margin: 0 0 30px 0;
        height: 400px;
    }
    
    .hero-text-content {
        margin-top: 0;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    color: white;
}

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

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

.stats-icon {
    font-size: 3rem;
    color: hsl(329, 41%, 75%);
    margin-bottom: 20px;
    display: block;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-label {
    font-size: 1.1rem;
    color: hsl(329, 41%, 75%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

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

.form-label {
    font-weight: 600;
    color: hsl(329, 41%, 35%);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(329, 41%, 85%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
}

.form-control:focus {
    border-color: hsl(329, 41%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(186, 85, 134, 0.25);
    background: white;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(186, 85, 134, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 85, 134, 0.4);
    background: linear-gradient(135deg, hsl(329, 41%, 55%) 0%, hsl(329, 41%, 40%) 100%);
}

.contact-info {
    color: white;
    text-align: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: hsl(329, 41%, 85%);
    margin-bottom: 15px;
}

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

.info-text {
    font-size: 1rem;
    color: hsl(329, 41%, 85%);
    line-height: 1.6;
}

.consultation-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: hsl(329, 41%, 85%);
}

.step-number {
    background: hsl(329, 41%, 50%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .consultation-process {
        padding: 25px 20px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(329, 41%, 95%) 0%, hsl(329, 41%, 98%) 100%);
    padding: 80px 0;
}

.faq-title {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-subtitle {
    color: hsl(329, 41%, 50%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.faq-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.faq-question {
    background: hsl(329, 41%, 50%);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: hsl(329, 41%, 35%);
    line-height: 1.6;
    margin: 0;
}

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

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

.advantages-section {
    background: linear-gradient(135deg, hsl(329, 41%, 98%) 0%, hsl(329, 41%, 95%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(329, 41%, 75%, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.section-title {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(329, 41%, 50%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(199, 90, 145, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(199, 90, 145, 0.2);
    border-color: hsl(329, 41%, 75%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(199, 90, 145, 0.3);
}

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

.advantage-title {
    color: hsl(329, 41%, 35%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.advantage-description {
    color: hsl(329, 41%, 40%);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.zigzag-left {
    padding-right: 60px;
}

.zigzag-right {
    padding-left: 60px;
}

@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></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(329, 41%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

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

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

.client-info {
    border-top: 2px solid hsl(329, 41%, 75%);
    padding-top: 1rem;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(329, 41%, 35%);
    margin-bottom: 0.3rem;
}

.client-location {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

.rating {
    margin-bottom: 1rem;
}

.rating .star {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 2px;
}

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

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(186, 85, 135, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(329, 41%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 2px;
}

.content-row {
    margin-bottom: 80px;
    align-items: center;
}

.content-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 135, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 85, 135, 0.1);
    position: relative;
    z-index: 2;
}

.content-text h3 {
    color: hsl(329, 41%, 35%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 3px;
}

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

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(186, 85, 135, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(186, 85, 135, 0.2);
}

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

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

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(186, 85, 135, 0.1), rgba(186, 85, 135, 0.05));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.content-image:hover::before {
    opacity: 0;
}

.reverse-row {
    flex-direction: row-reverse;
}

.reverse-row .content-image {
    transform: perspective(1000px) rotateY(-5deg);
}

.reverse-row .content-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.reverse-row .content-text h3::before {
    left: auto;
    right: -20px;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(329, 41%, 75%), hsl(329, 41%, 50%));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
    width: 120px;
    height: 120px;
}

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

.highlight-text {
    color: hsl(329, 41%, 50%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(329, 41%, 75%), transparent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-row {
        margin-bottom: 50px;
    }
    
    .content-text {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-text h3 {
        font-size: 1.8rem;
    }
    
    .content-image {
        transform: none;
        margin-bottom: 20px;
    }
    
    .reverse-row {
        flex-direction: column;
    }
    
    .reverse-row .content-image {
        transform: none;
    }
    
    .content-image img {
        height: 300px;
    }
    
    .floating-element {
        display: none;
    }
}

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

.services-section h2 {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 2px;
}

.services-section .lead {
    color: #6c757d;
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 3px solid hsl(329, 41%, 75%);
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 5px;
    border-radius: 25px 25px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: hsl(329, 41%, 50%);
    background-color: hsl(329, 41%, 95%);
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: hsl(329, 41%, 50%);
    border-color: hsl(329, 41%, 50%);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(329, 41%, 75%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(329, 41%, 50%), hsl(329, 41%, 75%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

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

.service-card h4 {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: hsl(329, 41%, 50%);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    color: #6c757d;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(329, 41%, 50%);
    font-weight: bold;
}

.btn-service {
    background: linear-gradient(135deg, hsl(329, 41%, 50%), hsl(329, 41%, 35%));
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
}

.conditions-box {
    background: hsl(329, 41%, 95%);
    border-left: 5px solid hsl(329, 41%, 50%);
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 10px 10px 0;
}

.conditions-box h5 {
    color: hsl(329, 41%, 35%);
    font-weight: 700;
    margin-bottom: 15px;
}

.conditions-box ul {
    margin-bottom: 0;
    color: #6c757d;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        margin: 0 2px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(329, 41%, 50%) 0%, hsl(329, 41%, 35%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.newsletter-subtitle {
    color: hsl(329, 41%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    color: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(329, 41%, 75%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: hsl(329, 41%, 35%);
    font-weight: bold;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    padding-right: 160px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: hsl(329, 41%, 75%);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .email-input {
        padding-right: 25px;
        margin-bottom: 15px;
    }
    
    .subscribe-btn {
        position: static;
        transform: none;
        width: 100%;
        padding: 15px;
    }
    
    .subscribe-btn:hover {
        transform: scale(1.02);
    }
}

footer {
    background: linear-gradient(135deg, hsl(329, 41%, 35%) 0%, hsl(329, 41%, 50%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(329, 41%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: hsl(329, 41%, 75%);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(329, 41%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(329, 41%, 75%);
    border: none;
    color: hsl(329, 41%, 35%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(329, 41%, 75%);
    color: hsl(329, 41%, 75%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(329, 41%, 75%);
    color: hsl(329, 41%, 35%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}