:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

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

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 80px;
    font-style: italic;
    opacity: 0.9;
}

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

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

.content-block:hover::before {
    left: 100%;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(0, 43%, 66%);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

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

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

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

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

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

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

.value-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-image {
        height: 250px;
    }
}

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

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

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

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

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

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

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

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

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(0, 43%, 66%), hsl(0, 43%, 41%));
}

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

.advantage-title {
    color: hsl(0, 43%, 26%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

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

.zigzag-right .advantage-card {
    margin-left: auto;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 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); }
    50% { transform: translateY(-20px); }
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(0, 43%, 66%);
    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;
    max-width: 1200px;
    margin: 0 auto;
    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(0, 43%, 66%), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 3s linear infinite;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(0, 43%, 66%);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(0, 43%, 66%) var(--progress, 75%), rgba(255,255,255,0.2) 0);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-inner {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.stat-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(0, 43%, 66%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

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

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.privacy-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.privacy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.section-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

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

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

.privacy-list li {
    margin: 15px 0;
    padding: 12px 0 12px 25px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-list li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 0.8rem;
}

.privacy-list li:last-child {
    border-bottom: none;
}

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

.highlight-box:before {
    content: '⚠';
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-size: 1.2rem;
    color: #1a1a1a;
}

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

.data-type-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.data-type-card h4 {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 10px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .data-types {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid #3498db;
    font-weight: 600;
}

.cookies-policy h3 {
    color: #2980b9;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.cookies-policy ul {
    margin: 20px 0;
    padding-left: 25px;
}

.cookies-policy li {
    margin-bottom: 12px;
    font-size: 1.05em;
}

.cookie-type {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-2px);
}

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

.highlight-box {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.consent-section {
    background: #27ae60;
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.consent-section h3 {
    color: white;
    margin-top: 0;
}

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

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

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

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(0, 43%, 66%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

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

.consultation-process h3 {
    color: hsl(0, 43%, 66%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.step-number {
    background: hsl(0, 43%, 66%);
    color: hsl(0, 43%, 26%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.working-hours {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid hsl(0, 43%, 66%);
}

.working-hours h4 {
    color: hsl(0, 43%, 66%);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: hsl(0, 43%, 26%);
    font-weight: 500;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(0, 43%, 66%);
    border-radius: 10px;
    background: white;
    color: hsl(0, 43%, 26%);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: hsl(0, 43%, 41%);
    box-shadow: 0 0 0 3px rgba(139, 69, 69, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(0, 43%, 66%);
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .consultation-process {
        padding: 1.5rem;
    }
}

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

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

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 80px;
    font-style: italic;
    opacity: 0.9;
}

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

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

.content-block:hover::before {
    left: 100%;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(0, 43%, 66%);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

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

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

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

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

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

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

.value-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-image {
        height: 250px;
    }
}

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

.services-section h2 {
    color: hsl(0, 43%, 26%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.services-section .lead {
    color: hsl(0, 43%, 41%);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

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

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

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 100%);
}

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

.service-card h4 {
    color: hsl(0, 43%, 26%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(0, 43%, 41%);
    margin-bottom: 15px;
}

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(0, 43%, 41%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.newsletter-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: hsl(0, 43%, 26%);
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(0, 43%, 66%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(0, 43%, 66%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(0, 43%, 41%);
    box-shadow: 0 0 0 3px rgba(166, 72, 72, 0.1);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(166, 72, 72, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(166, 72, 72, 0.4);
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
}

.newsletter-privacy {
    text-align: center;
    color: hsl(0, 43%, 41%);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

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

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

.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;
    letter-spacing: -1px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(0, 43%, 41%), hsl(0, 43%, 66%));
}

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

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

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

.client-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(0, 43%, 41%);
    font-size: 0.95rem;
}

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

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

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

.terms-title {
    font-size: 2.5rem;
    color: #1a252f;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-section {
    background: white;
    margin: 25px 0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
}

.section-title {
    font-size: 1.4rem;
    color: #2980b9;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

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

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

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

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

ul.terms-list li {
    margin-bottom: 8px;
    color: #34495e;
}

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

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

.faq-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.faq-subtitle {
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(0, 43%, 66%);
    color: white;
    box-shadow: none;
}

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

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

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: hsl(0, 43%, 66%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-highlight {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

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

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

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 80px;
    font-style: italic;
    opacity: 0.9;
}

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

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

.content-block:hover::before {
    left: 100%;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(0, 43%, 66%);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

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

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

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

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

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

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

.value-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-image {
        height: 250px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(0, 43%, 41%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.newsletter-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: hsl(0, 43%, 26%);
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(0, 43%, 66%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(0, 43%, 66%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(0, 43%, 41%);
    box-shadow: 0 0 0 3px rgba(166, 72, 72, 0.1);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(166, 72, 72, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(166, 72, 72, 0.4);
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
}

.newsletter-privacy {
    text-align: center;
    color: hsl(0, 43%, 41%);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}

:root {
            --primary-color: hsl(0, 43%, 41%);
            --secondary-color: hsl(0, 43%, 26%);
            --accent-color: hsl(0, 43%, 66%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 4px solid hsl(0, 43%, 66%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
}

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

.hero-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: hsl(0, 43%, 66%);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: left;
    animation: fadeInUp 1.4s ease;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    text-align: left;
    animation: fadeInUp 1.6s ease;
}

.hero-features li {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

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

.hero-buttons {
    margin-top: 40px;
    animation: fadeInUp 1.8s ease;
}

.btn-hero-primary {
    background: hsl(0, 43%, 66%);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: hsl(0, 43%, 56%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid hsl(0, 43%, 66%);
    color: hsl(0, 43%, 66%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-secondary:hover {
    background: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

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

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

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(0, 43%, 66%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

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

.consultation-process h3 {
    color: hsl(0, 43%, 66%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.step-number {
    background: hsl(0, 43%, 66%);
    color: hsl(0, 43%, 26%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.working-hours {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid hsl(0, 43%, 66%);
}

.working-hours h4 {
    color: hsl(0, 43%, 66%);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: hsl(0, 43%, 26%);
    font-weight: 500;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(0, 43%, 66%);
    border-radius: 10px;
    background: white;
    color: hsl(0, 43%, 26%);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: hsl(0, 43%, 41%);
    box-shadow: 0 0 0 3px rgba(139, 69, 69, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(0, 43%, 66%);
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .consultation-process {
        padding: 1.5rem;
    }
}

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

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

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 80px;
    font-style: italic;
    opacity: 0.9;
}

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

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

.content-block:hover::before {
    left: 100%;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(0, 43%, 66%);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

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

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

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

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

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

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

.value-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(0, 43%, 66%);
    margin-bottom: 20px;
}

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

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .story-image {
        height: 250px;
    }
}

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

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

.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;
    letter-spacing: -1px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(0, 43%, 41%), hsl(0, 43%, 66%));
}

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

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

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

.client-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(0, 43%, 41%);
    font-size: 0.95rem;
}

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

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

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

.services-section h2 {
    color: hsl(0, 43%, 26%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.services-section .lead {
    color: hsl(0, 43%, 41%);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

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

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

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 100%);
}

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

.service-card h4 {
    color: hsl(0, 43%, 26%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(0, 43%, 41%);
    margin-bottom: 15px;
}

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 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); }
    50% { transform: translateY(-20px); }
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(0, 43%, 66%);
    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;
    max-width: 1200px;
    margin: 0 auto;
    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(0, 43%, 66%), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 3s linear infinite;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(0, 43%, 66%);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(0, 43%, 66%) var(--progress, 75%), rgba(255,255,255,0.2) 0);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-inner {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.stat-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(0, 43%, 66%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

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

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

.faq-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.faq-subtitle {
    color: hsl(0, 43%, 66%);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(0, 43%, 66%);
    color: white;
    box-shadow: none;
}

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

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

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: hsl(0, 43%, 66%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-highlight {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

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

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

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

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

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

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

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

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

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(0, 43%, 66%), hsl(0, 43%, 41%));
}

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

.advantage-title {
    color: hsl(0, 43%, 26%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

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

.zigzag-right .advantage-card {
    margin-left: auto;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(0, 43%, 41%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.newsletter-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: hsl(0, 43%, 26%);
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(0, 43%, 66%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(0, 43%, 66%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(0, 43%, 41%);
    box-shadow: 0 0 0 3px rgba(166, 72, 72, 0.1);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, hsl(0, 43%, 41%) 0%, hsl(0, 43%, 26%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(166, 72, 72, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(166, 72, 72, 0.4);
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
}

.newsletter-privacy {
    text-align: center;
    color: hsl(0, 43%, 41%);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.footer-section {
    background-color: hsl(0, 43%, 26%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    background-color: hsl(0, 43%, 26%);
}

.footer-title {
    color: hsl(0, 43%, 66%);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: hsl(0, 43%, 66%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid hsl(0, 43%, 41%);
    padding-bottom: 8px;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
}

.contact-info {
    color: #e8e8e8;
    margin-bottom: 8px;
}

.phone-link {
    color: hsl(0, 43%, 66%);
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: hsl(0, 43%, 41%);
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(0, 43%, 26%) 0%, hsl(0, 43%, 41%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    border-top: 3px solid hsl(0, 43%, 66%);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: hsl(0, 43%, 66%);
    color: white;
}

.btn-accept:hover {
    background-color: white;
    color: hsl(0, 43%, 26%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background-color: transparent;
    color: hsl(0, 43%, 66%);
    border: 2px solid hsl(0, 43%, 66%);
}

.btn-learn:hover {
    background-color: hsl(0, 43%, 66%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }
}