:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    color: white;
    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(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(248, 46%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.image-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-row:nth-child(even) .image-container {
    transform: perspective(1000px) rotateY(-5deg);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

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

.text-content {
    flex: 1;
    padding: 0 30px;
}

.content-block {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(248, 46%, 58%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.block-title::before {
    content: '🌿';
    font-size: 1.5rem;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.highlight-text {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.story-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(248, 46%, 58%);
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .content-row,
    .content-row:nth-child(even) {
        flex-direction: column;
    }
    
    .image-container {
        flex: none;
        width: 100%;
        transform: none;
    }
    
    .text-content {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border-color: hsl(248, 46%, 58%);
}

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

.advantage-icon i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

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

.advantage-card:hover .advantage-icon i {
    transform: scale(1.2);
}

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

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

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

.statistics-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(248, 46%, 58%) var(--percentage, 75%), rgba(255,255,255,0.2) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-bg::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: hsl(248, 46%, 33%);
}

.circle-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    color: hsl(248, 46%, 58%);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

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

.privacy-header h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.privacy-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #27ae60;
    transition: transform 0.3s ease;
}

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

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "🌿";
    margin-right: 10px;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #27ae60;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

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

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

.privacy-list li::before {
    content: "🌱";
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    margin: 20px 0;
}

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

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

.data-type-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

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

.right-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

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

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

.policy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #27ae60;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.policy-section h2 {
    color: #27ae60;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

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

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

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

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

.cookie-type h4 {
    color: #27ae60;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.highlight-box::before {
    content: "ℹ️";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1.2em;
}

.consent-controls {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.gdpr-compliance h3 {
    color: white;
    margin-top: 0;
}

ul {
    padding-left: 25px;
}

li {
    margin: 10px 0;
    position: relative;
}

li::marker {
    content: "🌱 ";
}

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

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

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.section-subtitle {
    color: hsl(248, 46%, 78%);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

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

.form-label {
    color: hsl(248, 46%, 33%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(248, 46%, 88%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(248, 46%, 33%);
}

.form-control:focus {
    border-color: hsl(248, 46%, 58%);
    box-shadow: 0 0 0 3px rgba(148, 127, 204, 0.2);
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(248, 46%, 58%) 0%, hsl(248, 46%, 48%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(148, 127, 204, 0.4);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(148, 127, 204, 0.6);
    background: linear-gradient(135deg, hsl(248, 46%, 63%) 0%, hsl(248, 46%, 53%) 100%);
}

.contact-info {
    color: white;
    padding: 20px;
}

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

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

.info-title {
    color: hsl(248, 46%, 78%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: white;
    line-height: 1.7;
    font-size: 1rem;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.step-content h4 {
    color: hsl(248, 46%, 78%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
}

.hours-title {
    color: hsl(248, 46%, 78%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hours-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .info-card, .consultation-steps, .working-hours {
        padding: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    color: white;
    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(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(248, 46%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.image-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-row:nth-child(even) .image-container {
    transform: perspective(1000px) rotateY(-5deg);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

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

.text-content {
    flex: 1;
    padding: 0 30px;
}

.content-block {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(248, 46%, 58%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.block-title::before {
    content: '🌿';
    font-size: 1.5rem;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.highlight-text {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.story-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(248, 46%, 58%);
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .content-row,
    .content-row:nth-child(even) {
        flex-direction: column;
    }
    
    .image-container {
        flex: none;
        width: 100%;
        transform: none;
    }
    
    .text-content {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(248, 46%, 58%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(248, 46%, 58%), hsl(248, 46%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

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

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

.service-title {
    color: hsl(248, 46%, 18%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(248, 46%, 58%), hsl(248, 46%, 33%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price:hover {
    background: linear-gradient(135deg, hsl(248, 46%, 33%), hsl(248, 46%, 18%));
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.row {
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" 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.3);
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
    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;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(248, 46%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

.email-input:focus {
    outline: none;
    border-color: hsl(248, 46%, 58%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(248, 46%, 58%, 0.3);
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(248, 46%, 58%), hsl(248, 46%, 48%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(248, 46%, 68%), hsl(248, 46%, 58%));
}

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

.privacy-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    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;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.testimonials-subtitle {
    font-size: 1.2rem;
    color: hsl(248, 46%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(248, 46%, 90%);
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: hsl(248, 46%, 95%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-location {
    color: hsl(248, 46%, 75%);
    font-size: 0.9rem;
}

.quote-icon {
    font-size: 2rem;
    color: hsl(248, 46%, 58%);
    margin-bottom: 15px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.terms-title {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.terms-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #27ae60;
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

.highlight-box {
    background: #e8f8f5;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #a3e4d7;
    margin: 25px 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    font-size: 1.1rem;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tab-btn:hover,
.tab-btn.active {
    background: hsl(248, 46%, 58%);
    border-color: hsl(248, 46%, 58%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(248, 46%, 18%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, hsl(248, 46%, 58%), hsl(248, 46%, 50%));
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: hsl(248, 46%, 58%);
}

.faq-question:hover .faq-icon {
    color: white;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 25px;
    color: hsl(248, 46%, 25%);
    line-height: 1.7;
    border-top: 1px solid rgba(248, 46%, 58%, 0.1);
}

.highlight {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    color: white;
    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(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(248, 46%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.image-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-row:nth-child(even) .image-container {
    transform: perspective(1000px) rotateY(-5deg);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

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

.text-content {
    flex: 1;
    padding: 0 30px;
}

.content-block {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(248, 46%, 58%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.block-title::before {
    content: '🌿';
    font-size: 1.5rem;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.highlight-text {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.story-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(248, 46%, 58%);
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .content-row,
    .content-row:nth-child(even) {
        flex-direction: column;
    }
    
    .image-container {
        flex: none;
        width: 100%;
        transform: none;
    }
    
    .text-content {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" 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.3);
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
    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;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(248, 46%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

.email-input:focus {
    outline: none;
    border-color: hsl(248, 46%, 58%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(248, 46%, 58%, 0.3);
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(248, 46%, 58%), hsl(248, 46%, 48%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(248, 46%, 68%), hsl(248, 46%, 58%));
}

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

.privacy-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    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;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(248, 46%, 33%);
            --secondary-color: hsl(248, 46%, 18%);
            --accent-color: hsl(248, 46%, 58%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !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 {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%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(240deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

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

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: hsl(248, 46%, 58%);
    border-radius: 50%;
    opacity: 0.05;
    transform: rotate(-25deg);
}

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(248, 46%, 85%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    color: hsl(248, 46%, 90%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.hero-image-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 1;
}

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

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

.benefits-list li {
    color: hsl(248, 46%, 90%);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

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

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(248, 46%, 58%);
    border: 2px solid hsl(248, 46%, 58%);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background: transparent;
    color: hsl(248, 46%, 58%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(248, 46%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.floating-element {
    position: absolute;
    background: hsl(248, 46%, 58%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

.floating-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        margin-left: 0;
        float: none;
        shape-outside: none;
        margin-top: 2rem;
        height: 300px;
    }
    
    .hero-image-wrapper {
        margin-top: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        justify-content: center;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" 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.3);
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
    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;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(248, 46%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

.email-input:focus {
    outline: none;
    border-color: hsl(248, 46%, 58%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(248, 46%, 58%, 0.3);
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(248, 46%, 58%), hsl(248, 46%, 48%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(248, 46%, 68%), hsl(248, 46%, 58%));
}

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

.privacy-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    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;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tab-btn:hover,
.tab-btn.active {
    background: hsl(248, 46%, 58%);
    border-color: hsl(248, 46%, 58%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(248, 46%, 18%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, hsl(248, 46%, 58%), hsl(248, 46%, 50%));
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: hsl(248, 46%, 58%);
}

.faq-question:hover .faq-icon {
    color: white;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 25px;
    color: hsl(248, 46%, 25%);
    line-height: 1.7;
    border-top: 1px solid rgba(248, 46%, 58%, 0.1);
}

.highlight {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(248, 46%, 58%) var(--percentage, 75%), rgba(255,255,255,0.2) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-bg::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: hsl(248, 46%, 33%);
}

.circle-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    color: hsl(248, 46%, 58%);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.section-subtitle {
    color: hsl(248, 46%, 78%);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

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

.form-label {
    color: hsl(248, 46%, 33%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(248, 46%, 88%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(248, 46%, 33%);
}

.form-control:focus {
    border-color: hsl(248, 46%, 58%);
    box-shadow: 0 0 0 3px rgba(148, 127, 204, 0.2);
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(248, 46%, 58%) 0%, hsl(248, 46%, 48%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(148, 127, 204, 0.4);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(148, 127, 204, 0.6);
    background: linear-gradient(135deg, hsl(248, 46%, 63%) 0%, hsl(248, 46%, 53%) 100%);
}

.contact-info {
    color: white;
    padding: 20px;
}

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

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

.info-title {
    color: hsl(248, 46%, 78%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: white;
    line-height: 1.7;
    font-size: 1rem;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.step-content h4 {
    color: hsl(248, 46%, 78%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
}

.hours-title {
    color: hsl(248, 46%, 78%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hours-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .info-card, .consultation-steps, .working-hours {
        padding: 20px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border-color: hsl(248, 46%, 58%);
}

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

.advantage-icon i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

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

.advantage-card:hover .advantage-icon i {
    transform: scale(1.2);
}

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

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

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

.services-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(248, 46%, 58%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(248, 46%, 58%), hsl(248, 46%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

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

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

.service-title {
    color: hsl(248, 46%, 18%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(248, 46%, 58%), hsl(248, 46%, 33%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price:hover {
    background: linear-gradient(135deg, hsl(248, 46%, 33%), hsl(248, 46%, 18%));
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.row {
    position: relative;
    z-index: 2;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.testimonials-subtitle {
    font-size: 1.2rem;
    color: hsl(248, 46%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(248, 46%, 90%);
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: hsl(248, 46%, 95%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-location {
    color: hsl(248, 46%, 75%);
    font-size: 0.9rem;
}

.quote-icon {
    font-size: 2rem;
    color: hsl(248, 46%, 58%);
    margin-bottom: 15px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(248, 46%, 33%) 0%, hsl(248, 46%, 18%) 100%);
    padding: 80px 0;
    color: white;
    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(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(248, 46%, 58%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.image-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s ease;
}

.content-row:nth-child(even) .image-container {
    transform: perspective(1000px) rotateY(-5deg);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

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

.text-content {
    flex: 1;
    padding: 0 30px;
}

.content-block {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(248, 46%, 58%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.block-title::before {
    content: '🌿';
    font-size: 1.5rem;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.highlight-text {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.story-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(248, 46%, 58%);
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .content-row,
    .content-row:nth-child(even) {
        flex-direction: column;
    }
    
    .image-container {
        flex: none;
        width: 100%;
        transform: none;
    }
    
    .text-content {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(248, 46%, 18%) 0%, hsl(248, 46%, 33%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: hsl(248, 46%, 58%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-links h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(248, 46%, 58%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(248, 46%, 58%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(248, 46%, 58%);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

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

.cookie-notice p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-btn {
    background: hsl(248, 46%, 58%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(248, 46%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(248, 46%, 58%);
    color: hsl(248, 46%, 58%);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cookie-btn-secondary:hover {
    background: hsl(248, 46%, 58%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}