:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

.about-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    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="notes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(44, 66%, 36%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23notes)"/></svg>');
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid hsl(44, 66%, 85%);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 36%) 100%);
}

.story-header {
    font-size: 2.2rem;
    color: hsl(44, 66%, 21%);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.story-header::before {
    content: '♪';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(44, 66%, 61%);
    font-size: 2.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(44, 66%, 25%);
    margin-bottom: 30px;
}

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

.mission-item {
    background: linear-gradient(135deg, hsl(44, 66%, 98%) 0%, hsl(44, 66%, 94%) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid hsl(44, 66%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(44, 66%, 21%);
    margin-bottom: 15px;
}

.mission-desc {
    color: hsl(44, 66%, 30%);
    line-height: 1.7;
}

.image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.showcase-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.highlight-quote {
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 30px;
        margin: 20px 0;
    }
    
    .image-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .showcase-image {
        height: 250px;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="hsl(44, 66%, 61%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.section-title {
    color: hsl(44, 66%, 21%);
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: hsl(44, 66%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(44, 66%, 61%), hsl(44, 66%, 36%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

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

.advantage-item:nth-child(3n) {
    animation-delay: 0.6s;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: hsl(44, 66%, 61%);
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
    margin-left: auto;
    width: calc(50% - 30px);
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
    margin-right: auto;
    width: calc(50% - 30px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(44, 66%, 61%), hsl(44, 66%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.advantage-card:hover .advantage-icon::before {
    width: 100%;
    height: 100%;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.advantage-title {
    color: hsl(44, 66%, 21%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(44, 66%, 36%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 30px;
    }
}

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

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

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

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 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: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

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

.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(44, 66%, 61%) var(--percentage, 75%), rgba(255,255,255,0.2) 0);
    padding: 8px;
}

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

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

.stat-unit {
    font-size: 0.8rem;
    color: hsl(44, 66%, 61%);
    font-weight: 600;
}

.stat-icon {
    font-size: 1.5rem;
    color: hsl(44, 66%, 61%);
    margin-bottom: 15px;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

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

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

.privacy-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

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

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

.privacy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.privacy-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin: 0 0 20px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "♪";
    margin-right: 12px;
    font-size: 1.2em;
    color: #764ba2;
}

.privacy-section h3 {
    color: #495057;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

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

.privacy-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.privacy-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
}

.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: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.data-type-card:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

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

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    font-weight: 600;
}

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

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

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

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

.cookies-policy li::marker {
    color: #667eea;
    font-weight: bold;
}

.cookie-category {
    background: rgba(255,255,255,0.8);
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

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

.consent-notice {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid #3498db;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 500;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
    font-size: 1rem;
}

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

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

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

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

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

.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(44, 66%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.form-control:focus {
    border-color: hsl(44, 66%, 36%);
    box-shadow: 0 0 0 0.2rem rgba(183, 140, 67, 0.25);
    outline: none;
    background: white;
    color: hsl(44, 66%, 21%);
}

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

.contact-btn {
    background: linear-gradient(45deg, hsl(44, 66%, 36%), hsl(44, 66%, 61%));
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(183, 140, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(183, 140, 67, 0.4);
    background: linear-gradient(45deg, hsl(44, 66%, 41%), hsl(44, 66%, 66%));
    color: white;
}

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

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

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

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(44, 66%, 85%);
    margin-bottom: 15px;
}

.info-text {
    color: hsl(44, 66%, 90%);
    line-height: 1.6;
    font-size: 1rem;
}

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

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(44, 66%, 85%);
    margin-bottom: 25px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.step-number {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    color: hsl(44, 66%, 90%);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .consultation-process {
        padding: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    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="notes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(44, 66%, 36%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23notes)"/></svg>');
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid hsl(44, 66%, 85%);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 36%) 100%);
}

.story-header {
    font-size: 2.2rem;
    color: hsl(44, 66%, 21%);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.story-header::before {
    content: '♪';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(44, 66%, 61%);
    font-size: 2.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(44, 66%, 25%);
    margin-bottom: 30px;
}

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

.mission-item {
    background: linear-gradient(135deg, hsl(44, 66%, 98%) 0%, hsl(44, 66%, 94%) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid hsl(44, 66%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(44, 66%, 21%);
    margin-bottom: 15px;
}

.mission-desc {
    color: hsl(44, 66%, 30%);
    line-height: 1.7;
}

.image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.showcase-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.highlight-quote {
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 30px;
        margin: 20px 0;
    }
    
    .image-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .showcase-image {
        height: 250px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

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

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

.services-header h2 {
    color: hsl(44, 66%, 21%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(44, 66%, 61%);
    border-radius: 2px;
}

.services-header p {
    color: hsl(44, 66%, 36%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 36%);
    border-radius: 30px;
    padding: 12px 30px;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: hsl(44, 66%, 36%);
    border-color: hsl(44, 66%, 36%);
    color: white;
}

.nav-tabs .nav-link:hover {
    background: hsl(44, 66%, 61%);
    border-color: hsl(44, 66%, 61%);
    color: white;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(44, 66%, 61%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(44, 66%, 61%), hsl(44, 66%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    color: hsl(44, 66%, 21%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-price {
    background: hsl(44, 66%, 61%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

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

.service-features li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

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

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

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

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

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

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

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

.newsletter-subtitle {
    color: hsl(44, 66%, 85%);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 20px;
    border: 3px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(44, 66%, 21%);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(44, 66%, 61%);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.newsletter-input::placeholder {
    color: hsl(44, 66%, 45%);
    font-weight: 500;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 55%) 100%);
    color: hsl(44, 66%, 21%);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(44, 66%, 65%) 0%, hsl(44, 66%, 59%) 100%);
}

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

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

.benefits-list {
    margin-top: 3rem;
    text-align: left;
}

.benefit-item {
    color: hsl(44, 66%, 85%);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-input,
    .subscribe-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
        text-align: left;
        justify-content: flex-start;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(44, 66%, 36%), hsl(44, 66%, 61%), hsl(44, 66%, 36%));
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(44, 66%, 21%);
    margin-bottom: 20px;
    position: relative;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(44, 66%, 61%);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

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

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

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(44, 66%, 21%);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: hsl(44, 66%, 36%);
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: hsl(44, 66%, 61%);
    font-size: 1.2rem;
}

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

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

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

.terms-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.terms-section {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.8);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
}

.section-title {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "♪";
    margin-right: 10px;
    font-size: 1.2em;
    color: #f093fb;
}

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

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

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

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

.highlight {
    background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #667eea;
}

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

.faq-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    padding: 80px 0;
}

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

.faq-title {
    color: hsl(44, 66%, 21%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

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

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(44, 66%, 61%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    color: white;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
}

.faq-question::after {
    content: "♪";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: hsl(44, 66%, 61%);
}

.faq-answer {
    padding: 30px;
    color: hsl(44, 66%, 21%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-highlight {
    color: hsl(44, 66%, 36%);
    font-weight: 600;
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    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="notes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(44, 66%, 36%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23notes)"/></svg>');
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid hsl(44, 66%, 85%);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 36%) 100%);
}

.story-header {
    font-size: 2.2rem;
    color: hsl(44, 66%, 21%);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.story-header::before {
    content: '♪';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(44, 66%, 61%);
    font-size: 2.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(44, 66%, 25%);
    margin-bottom: 30px;
}

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

.mission-item {
    background: linear-gradient(135deg, hsl(44, 66%, 98%) 0%, hsl(44, 66%, 94%) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid hsl(44, 66%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(44, 66%, 21%);
    margin-bottom: 15px;
}

.mission-desc {
    color: hsl(44, 66%, 30%);
    line-height: 1.7;
}

.image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.showcase-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.highlight-quote {
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 30px;
        margin: 20px 0;
    }
    
    .image-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .showcase-image {
        height: 250px;
    }
}

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

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

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

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

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

.newsletter-subtitle {
    color: hsl(44, 66%, 85%);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 20px;
    border: 3px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(44, 66%, 21%);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(44, 66%, 61%);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.newsletter-input::placeholder {
    color: hsl(44, 66%, 45%);
    font-weight: 500;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 55%) 100%);
    color: hsl(44, 66%, 21%);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(44, 66%, 65%) 0%, hsl(44, 66%, 59%) 100%);
}

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

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

.benefits-list {
    margin-top: 3rem;
    text-align: left;
}

.benefit-item {
    color: hsl(44, 66%, 85%);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-input,
    .subscribe-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
        text-align: left;
        justify-content: flex-start;
    }
}

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

:root {
            --primary-color: hsl(44, 66%, 36%);
            --secondary-color: hsl(44, 66%, 21%);
            --accent-color: hsl(44, 66%, 61%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            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: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .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: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 8px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                transform: none;
            }
        }
        
        .logo-img {
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(10deg) scale(1.05);
        }

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: hsl(44, 66%, 61%);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f8f9fa;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefits-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefits-list i {
    color: hsl(44, 66%, 61%);
    font-size: 1.5rem;
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(44, 66%, 61%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(44, 66%, 21%);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: hsl(44, 66%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: hsl(44, 66%, 21%);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    padding: 13px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(44, 66%, 61%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    padding: 80px 0;
}

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

.faq-title {
    color: hsl(44, 66%, 21%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

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

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(44, 66%, 61%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    color: white;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
}

.faq-question::after {
    content: "♪";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: hsl(44, 66%, 61%);
}

.faq-answer {
    padding: 30px;
    color: hsl(44, 66%, 21%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-highlight {
    color: hsl(44, 66%, 36%);
    font-weight: 600;
}

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

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

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

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

.services-header h2 {
    color: hsl(44, 66%, 21%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(44, 66%, 61%);
    border-radius: 2px;
}

.services-header p {
    color: hsl(44, 66%, 36%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 36%);
    border-radius: 30px;
    padding: 12px 30px;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: hsl(44, 66%, 36%);
    border-color: hsl(44, 66%, 36%);
    color: white;
}

.nav-tabs .nav-link:hover {
    background: hsl(44, 66%, 61%);
    border-color: hsl(44, 66%, 61%);
    color: white;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(44, 66%, 61%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(44, 66%, 61%), hsl(44, 66%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    color: hsl(44, 66%, 21%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-price {
    background: hsl(44, 66%, 61%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

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

.service-features li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

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

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(44, 66%, 36%), hsl(44, 66%, 61%), hsl(44, 66%, 36%));
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(44, 66%, 21%);
    margin-bottom: 20px;
    position: relative;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(44, 66%, 61%);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

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

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

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(44, 66%, 21%);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: hsl(44, 66%, 36%);
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: hsl(44, 66%, 61%);
    font-size: 1.2rem;
}

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

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="hsl(44, 66%, 61%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.section-title {
    color: hsl(44, 66%, 21%);
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: hsl(44, 66%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(44, 66%, 61%), hsl(44, 66%, 36%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

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

.advantage-item:nth-child(3n) {
    animation-delay: 0.6s;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: hsl(44, 66%, 61%);
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
    margin-left: auto;
    width: calc(50% - 30px);
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
    margin-right: auto;
    width: calc(50% - 30px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(44, 66%, 61%), hsl(44, 66%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.advantage-card:hover .advantage-icon::before {
    width: 100%;
    height: 100%;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.advantage-title {
    color: hsl(44, 66%, 21%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(44, 66%, 36%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

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

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 30px;
    }
}

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

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

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

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

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

.newsletter-subtitle {
    color: hsl(44, 66%, 85%);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 20px;
    border: 3px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(44, 66%, 21%);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(44, 66%, 61%);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.newsletter-input::placeholder {
    color: hsl(44, 66%, 45%);
    font-weight: 500;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 55%) 100%);
    color: hsl(44, 66%, 21%);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(44, 66%, 65%) 0%, hsl(44, 66%, 59%) 100%);
}

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

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

.benefits-list {
    margin-top: 3rem;
    text-align: left;
}

.benefit-item {
    color: hsl(44, 66%, 85%);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-input,
    .subscribe-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
        text-align: left;
        justify-content: flex-start;
    }
}

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

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

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

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

.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(44, 66%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.form-control:focus {
    border-color: hsl(44, 66%, 36%);
    box-shadow: 0 0 0 0.2rem rgba(183, 140, 67, 0.25);
    outline: none;
    background: white;
    color: hsl(44, 66%, 21%);
}

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

.contact-btn {
    background: linear-gradient(45deg, hsl(44, 66%, 36%), hsl(44, 66%, 61%));
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(183, 140, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(183, 140, 67, 0.4);
    background: linear-gradient(45deg, hsl(44, 66%, 41%), hsl(44, 66%, 66%));
    color: white;
}

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

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

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

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(44, 66%, 85%);
    margin-bottom: 15px;
}

.info-text {
    color: hsl(44, 66%, 90%);
    line-height: 1.6;
    font-size: 1rem;
}

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

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(44, 66%, 85%);
    margin-bottom: 25px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.step-number {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    color: hsl(44, 66%, 90%);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .consultation-process {
        padding: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(44, 66%, 96%) 0%, hsl(44, 66%, 92%) 100%);
    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="notes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="hsl(44, 66%, 36%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23notes)"/></svg>');
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid hsl(44, 66%, 85%);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(44, 66%, 61%) 0%, hsl(44, 66%, 36%) 100%);
}

.story-header {
    font-size: 2.2rem;
    color: hsl(44, 66%, 21%);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.story-header::before {
    content: '♪';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(44, 66%, 61%);
    font-size: 2.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(44, 66%, 25%);
    margin-bottom: 30px;
}

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

.mission-item {
    background: linear-gradient(135deg, hsl(44, 66%, 98%) 0%, hsl(44, 66%, 94%) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid hsl(44, 66%, 61%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(44, 66%, 21%);
    margin-bottom: 15px;
}

.mission-desc {
    color: hsl(44, 66%, 30%);
    line-height: 1.7;
}

.image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.showcase-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.highlight-quote {
    background: linear-gradient(135deg, hsl(44, 66%, 36%) 0%, hsl(44, 66%, 21%) 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 30px;
        margin: 20px 0;
    }
    
    .image-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .showcase-image {
        height: 250px;
    }
}

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

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

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

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 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: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

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

.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(44, 66%, 61%) var(--percentage, 75%), rgba(255,255,255,0.2) 0);
    padding: 8px;
}

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

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

.stat-unit {
    font-size: 0.8rem;
    color: hsl(44, 66%, 61%);
    font-weight: 600;
}

.stat-icon {
    font-size: 1.5rem;
    color: hsl(44, 66%, 61%);
    margin-bottom: 15px;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(44, 66%, 21%) 0%, hsl(44, 66%, 36%) 100%);
    color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(44, 66%, 61%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(44, 66%, 61%);
    transform: translateX(5px);
}

footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 0.5rem;
    color: hsl(44, 66%, 61%);
}

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

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

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

.cookie-notice .btn-accept {
    background: hsl(44, 66%, 61%);
    border: none;
    color: hsl(44, 66%, 21%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(44, 66%, 61%);
    color: hsl(44, 66%, 61%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(44, 66%, 61%);
    color: hsl(44, 66%, 21%);
    transform: translateY(-2px);
}