:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

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

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

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

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

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

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: 2.2rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.value-card {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.company-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin: 40px 0;
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(42, 47%, 61%), hsl(42, 47%, 36%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.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(42, 47%, 61%), hsl(42, 47%, 36%));
    transform: translateX(-50%);
    z-index: 1;
}

.advantage-item {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60%;
    text-align: right;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60%;
    text-align: left;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(42, 47%, 61%);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(42, 47%, 61%);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid hsl(42, 47%, 21%);
    z-index: 3;
}

.advantage-item:nth-child(odd) .advantage-card::before {
    right: -70px;
}

.advantage-item:nth-child(even) .advantage-card::before {
    left: -70px;
}

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

.advantage-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 36%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: hsl(42, 47%, 21%);
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(42, 47%, 21%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-description {
    color: hsl(42, 47%, 36%);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    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;
    margin-top: 50px;
}

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    line-height: 1.4;
}

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

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

.stat-card {
    animation: countUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }
.stat-card:nth-child(8) { animation-delay: 0.8s; }

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

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

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

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    padding: 15px 0;
    border-bottom: 3px solid #667eea;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #764ba2;
}

.content-block {
    background: white;
    padding: 30px;
    margin: 25px 0;
    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;
}

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

.content-block p {
    margin: 15px 0;
    font-size: 1.1rem;
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #e17055;
    font-weight: 500;
}

.rights-list {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

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

.rights-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 30px;
}

.rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.data-type-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #667eea;
    text-align: center;
}

.data-type-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-note {
    background: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 15px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

.cookies-policy {
    max-width: 900px;
    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, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.cookies-policy li::marker {
    color: #3498db;
    font-weight: bold;
}

.cookie-type {
    background: rgba(52, 152, 219, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #3498db;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gdpr-section {
    background: rgba(46, 204, 113, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #2ecc71;
}

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

strong {
    color: #2c3e50;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

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

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid hsl(42, 47%, 61%);
}

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

.form-label {
    color: hsl(42, 47%, 21%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    border: 2px solid hsl(42, 47%, 36%);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(42, 47%, 21%);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: hsl(42, 47%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(139, 101, 8, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(42, 47%, 36%), hsl(42, 47%, 61%));
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(42, 47%, 61%), hsl(42, 47%, 36%));
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

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

.info-title {
    color: hsl(42, 47%, 61%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-text {
    line-height: 1.6;
    font-size: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid hsl(42, 47%, 61%);
}

.hours-title {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.hours-list li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

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

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

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

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

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

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: 2.2rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.value-card {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.company-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin: 40px 0;
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(42, 47%, 61%), hsl(42, 47%, 36%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

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

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

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

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

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

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

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: hsl(42, 47%, 61%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: hsl(42, 47%, 36%);
    margin-right: 25px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: hsl(42, 47%, 21%);
    transform: scale(1.1) rotate(5deg);
}

.service-content {
    flex: 1;
}

.service-title {
    color: hsl(42, 47%, 21%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(42, 47%, 36%);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-price {
    color: hsl(42, 47%, 36%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: auto;
}

.service-card:hover .service-price {
    color: hsl(42, 47%, 21%);
}

.service-terms {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.service-terms h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: hsl(42, 47%, 21%);
}

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

.service-terms li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 500;
}

.service-terms li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-right: 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

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

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

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

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

.newsletter-title {
  color: hsl(42, 47%, 21%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-subtitle {
  color: hsl(42, 47%, 36%);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.newsletter-description {
  color: hsl(42, 47%, 21%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 18px 25px;
  border: 2px solid hsl(42, 47%, 61%);
  border-radius: 50px;
  font-size: 1.1rem;
  background: white;
  color: hsl(42, 47%, 21%);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(42, 47%, 36%);
  box-shadow: 0 0 0 4px rgba(139, 119, 80, 0.2);
  transform: translateY(-2px);
}

.newsletter-input::placeholder {
  color: hsl(42, 47%, 50%);
}

.newsletter-btn {
  background: linear-gradient(135deg, hsl(42, 47%, 36%) 0%, hsl(42, 47%, 21%) 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(139, 119, 80, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 119, 80, 0.4);
  background: linear-gradient(135deg, hsl(42, 47%, 41%) 0%, hsl(42, 47%, 26%) 100%);
}

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

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-item {
  padding: 20px;
  background: rgba(139, 119, 80, 0.1);
  border-radius: 15px;
  border-left: 4px solid hsl(42, 47%, 61%);
}

.benefit-title {
  color: hsl(42, 47%, 21%);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-text {
  color: hsl(42, 47%, 36%);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .newsletter-title {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .newsletter-benefits {
    grid-template-columns: 1fr;
  }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.02) 2px,
        rgba(255,255,255,0.02) 4px
    );
}

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid hsl(42, 47%, 61%);
}

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

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

.testimonial-text {
    color: hsl(42, 47%, 21%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(42, 47%, 61%);
    padding-top: 15px;
}

.client-name {
    color: hsl(42, 47%, 36%);
    font-weight: 700;
    font-size: 1.1rem;
}

.client-location {
    color: hsl(42, 47%, 21%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: hsl(42, 47%, 61%);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

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

.terms-title {
    text-align: center;
    font-size: 2.5em;
    color: #34495e;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.4em;
    color: #2980b9;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-text {
    text-align: justify;
    margin-bottom: 15px;
    padding: 0 10px;
}

.highlight-box {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
}

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

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

.faq-section {
    background: linear-gradient(135deg, hsl(42, 47%, 36%) 0%, hsl(42, 47%, 21%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    color: hsl(42, 47%, 61%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

.accordion-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    box-shadow: none;
}

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

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

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

.accordion-body {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-icon {
    color: hsl(42, 47%, 61%);
    font-size: 1.3rem;
    margin-right: 10px;
}

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

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

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

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

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

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

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: 2.2rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.value-card {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.company-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin: 40px 0;
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(42, 47%, 61%), hsl(42, 47%, 36%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

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

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

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

.newsletter-title {
  color: hsl(42, 47%, 21%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-subtitle {
  color: hsl(42, 47%, 36%);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.newsletter-description {
  color: hsl(42, 47%, 21%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 18px 25px;
  border: 2px solid hsl(42, 47%, 61%);
  border-radius: 50px;
  font-size: 1.1rem;
  background: white;
  color: hsl(42, 47%, 21%);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(42, 47%, 36%);
  box-shadow: 0 0 0 4px rgba(139, 119, 80, 0.2);
  transform: translateY(-2px);
}

.newsletter-input::placeholder {
  color: hsl(42, 47%, 50%);
}

.newsletter-btn {
  background: linear-gradient(135deg, hsl(42, 47%, 36%) 0%, hsl(42, 47%, 21%) 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(139, 119, 80, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 119, 80, 0.4);
  background: linear-gradient(135deg, hsl(42, 47%, 41%) 0%, hsl(42, 47%, 26%) 100%);
}

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

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-item {
  padding: 20px;
  background: rgba(139, 119, 80, 0.1);
  border-radius: 15px;
  border-left: 4px solid hsl(42, 47%, 61%);
}

.benefit-title {
  color: hsl(42, 47%, 21%);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-text {
  color: hsl(42, 47%, 36%);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .newsletter-title {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .newsletter-benefits {
    grid-template-columns: 1fr;
  }
}

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

:root {
            --primary-color: hsl(42, 47%, 36%);
            --secondary-color: hsl(42, 47%, 21%);
            --accent-color: hsl(42, 47%, 61%);
        }
        
        .navbar {
            background-color: var(--secondary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: #fff !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(179, 140, 75, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b38c4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 8px;
                padding: 1rem;
            }
        }
        
        .logo-img {
            filter: brightness(1.2) contrast(1.1);
        }

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

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

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-text {
    color: white;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: justify;
}

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

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

.benefits-list li::before {
    content: "✂";
    position: absolute;
    left: 0;
    color: hsl(42, 47%, 61%);
    font-size: 1.2rem;
}

.cta-buttons {
    margin-top: 3rem;
}

.btn-primary-custom {
    background-color: hsl(42, 47%, 61%);
    border: none;
    color: hsl(42, 47%, 21%);
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    padding: 13px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background-color: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-image {
        width: 100%;
        opacity: 0.2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.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(42, 47%, 61%), hsl(42, 47%, 36%));
    transform: translateX(-50%);
    z-index: 1;
}

.advantage-item {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60%;
    text-align: right;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60%;
    text-align: left;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(42, 47%, 61%);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(42, 47%, 61%);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid hsl(42, 47%, 21%);
    z-index: 3;
}

.advantage-item:nth-child(odd) .advantage-card::before {
    right: -70px;
}

.advantage-item:nth-child(even) .advantage-card::before {
    left: -70px;
}

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

.advantage-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 36%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: hsl(42, 47%, 21%);
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(42, 47%, 21%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-description {
    color: hsl(42, 47%, 36%);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(42, 47%, 36%) 0%, hsl(42, 47%, 21%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    color: hsl(42, 47%, 61%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

.accordion-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    box-shadow: none;
}

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

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

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

.accordion-body {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-icon {
    color: hsl(42, 47%, 61%);
    font-size: 1.3rem;
    margin-right: 10px;
}

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

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

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

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

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

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

.story-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: 2.2rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.value-card {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.company-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin: 40px 0;
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(42, 47%, 61%), hsl(42, 47%, 36%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.02) 2px,
        rgba(255,255,255,0.02) 4px
    );
}

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid hsl(42, 47%, 61%);
}

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

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

.testimonial-text {
    color: hsl(42, 47%, 21%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(42, 47%, 61%);
    padding-top: 15px;
}

.client-name {
    color: hsl(42, 47%, 36%);
    font-weight: 700;
    font-size: 1.1rem;
}

.client-location {
    color: hsl(42, 47%, 21%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: hsl(42, 47%, 61%);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    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;
    margin-top: 50px;
}

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(42, 47%, 61%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    line-height: 1.4;
}

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

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

.stat-card {
    animation: countUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }
.stat-card:nth-child(8) { animation-delay: 0.8s; }

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

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

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

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

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: hsl(42, 47%, 61%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: hsl(42, 47%, 36%);
    margin-right: 25px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: hsl(42, 47%, 21%);
    transform: scale(1.1) rotate(5deg);
}

.service-content {
    flex: 1;
}

.service-title {
    color: hsl(42, 47%, 21%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(42, 47%, 36%);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-price {
    color: hsl(42, 47%, 36%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: auto;
}

.service-card:hover .service-price {
    color: hsl(42, 47%, 21%);
}

.service-terms {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.service-terms h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: hsl(42, 47%, 21%);
}

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

.service-terms li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 500;
}

.service-terms li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-right: 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

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

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

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

.section-title {
    color: hsl(42, 47%, 61%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid hsl(42, 47%, 61%);
}

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

.form-label {
    color: hsl(42, 47%, 21%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    border: 2px solid hsl(42, 47%, 36%);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(42, 47%, 21%);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: hsl(42, 47%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(139, 101, 8, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(42, 47%, 36%), hsl(42, 47%, 61%));
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(42, 47%, 61%), hsl(42, 47%, 36%));
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

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

.info-title {
    color: hsl(42, 47%, 61%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-text {
    line-height: 1.6;
    font-size: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid hsl(42, 47%, 61%);
}

.hours-title {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.hours-list li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

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

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

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

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

.newsletter-title {
  color: hsl(42, 47%, 21%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-subtitle {
  color: hsl(42, 47%, 36%);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.newsletter-description {
  color: hsl(42, 47%, 21%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 18px 25px;
  border: 2px solid hsl(42, 47%, 61%);
  border-radius: 50px;
  font-size: 1.1rem;
  background: white;
  color: hsl(42, 47%, 21%);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(42, 47%, 36%);
  box-shadow: 0 0 0 4px rgba(139, 119, 80, 0.2);
  transform: translateY(-2px);
}

.newsletter-input::placeholder {
  color: hsl(42, 47%, 50%);
}

.newsletter-btn {
  background: linear-gradient(135deg, hsl(42, 47%, 36%) 0%, hsl(42, 47%, 21%) 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(139, 119, 80, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 119, 80, 0.4);
  background: linear-gradient(135deg, hsl(42, 47%, 41%) 0%, hsl(42, 47%, 26%) 100%);
}

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

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-item {
  padding: 20px;
  background: rgba(139, 119, 80, 0.1);
  border-radius: 15px;
  border-left: 4px solid hsl(42, 47%, 61%);
}

.benefit-title {
  color: hsl(42, 47%, 21%);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-text {
  color: hsl(42, 47%, 36%);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .newsletter-title {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .newsletter-benefits {
    grid-template-columns: 1fr;
  }
}

footer {
    background: linear-gradient(135deg, hsl(42, 47%, 21%) 0%, hsl(42, 47%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(42, 47%, 61%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

.footer-section h5 {
    color: hsl(42, 47%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: hsl(42, 47%, 61%);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info {
    color: #e8e8e8;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: hsl(42, 47%, 61%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(42, 47%, 61%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8b8b8;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(42, 47%, 61%);
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
}

.btn-accept:hover {
    background: transparent;
    color: hsl(42, 47%, 61%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(42, 47%, 61%);
    color: hsl(42, 47%, 61%);
}

.btn-learn:hover {
    background: hsl(42, 47%, 61%);
    color: hsl(42, 47%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}