:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 100px 0;
        background-color: #f9fafb;
    }
    
    .about-header {
        text-align: center;
        margin-bottom: 70px;
    }
    
    .about-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: hsl(218, 56%, 24%);
        margin-bottom: 20px;
    }
    
    .about-header .subtitle {
        font-size: 18px;
        color: hsl(218, 56%, 39%);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        color: #555;
    }
    
    .about-highlight {
        background-color: hsl(218, 56%, 64%, 0.1);
        border-left: 4px solid hsl(218, 56%, 39%);
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .about-values {
        margin-top: 60px;
    }
    
    .value-item {
        background-color: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateY(-5px);
    }
    
    .value-item h4 {
        color: hsl(218, 56%, 39%);
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 28px;
        font-weight: 600;
        color: hsl(218, 56%, 24%);
        margin-bottom: 25px;
    }
    
    .team-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section .section-title {
        margin-bottom: 60px;
        color: hsl(218, 56%, 24%);
        text-align: center;
    }
    
    .advantages-section .section-title h2 {
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .advantages-section .section-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(218, 56%, 39%);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(218, 56%, 64%);
    }
    
    .advantage-card .icon {
        font-size: 2.5rem;
        color: hsl(218, 56%, 39%);
        margin-bottom: 20px;
        display: inline-block;
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover .icon {
        color: hsl(218, 56%, 64%);
        transform: scale(1.1);
    }
    
    .advantage-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(218, 56%, 24%);
    }
    
    .advantage-card p {
        color: #6c757d;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 60px 0;
        }
        
        .advantage-card {
            margin-bottom: 30px;
        }
    }

.statistics-section {
    background-color: hsl(218, 56%, 24%);
    color: white;
    padding: 80px 0;
}

.statistics-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.statistics-section .section-subtitle {
    color: hsl(218, 56%, 64%);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid hsl(218, 56%, 64%);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(218, 56%, 64%);
    margin-bottom: 15px;
}

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

.stat-title {
    font-size: 1.2rem;
    color: hsl(218, 56%, 64%);
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.graph-container {
    height: 150px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.graph-bar {
    position: absolute;
    bottom: 0;
    width: 10%;
    background-color: hsl(218, 56%, 64%);
    border-radius: 5px 5px 0 0;
    transition: height 1.5s ease;
}

.bar-1 { left: 5%; height: 40%; }
.bar-2 { left: 20%; height: 70%; }
.bar-3 { left: 35%; height: 90%; }
.bar-4 { left: 50%; height: 60%; }
.bar-5 { left: 65%; height: 80%; }
.bar-6 { left: 80%; height: 50%; }

.line-graph {
    height: 150px;
    position: relative;
    margin-top: 15px;
}

.line {
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, hsl(218, 56%, 39%) 0%, hsl(218, 56%, 64%) 100%);
    top: 50%;
    border-radius: 3px;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid hsl(218, 56%, 64%);
}

.dot-1 { left: 10%; top: 70%; }
.dot-2 { left: 25%; top: 30%; }
.dot-3 { left: 40%; top: 60%; }
.dot-4 { left: 55%; top: 20%; }
.dot-5 { left: 70%; top: 50%; }
.dot-6 { left: 85%; top: 40%; }

.pie-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(
        hsl(218, 56%, 64%) 0% 25%,
        hsl(218, 56%, 39%) 25% 55%,
        hsl(218, 80%, 80%) 55% 85%,
        hsl(218, 56%, 24%) 85% 100%
    );
    margin: 15px auto 0;
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        padding: 40px 0;
        background-color: #f9f9f9;
    }
    
    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 40px;
    }
    
    h1 {
        color: #2c3e50;
        font-size: 32px;
        margin-bottom: 10px;
        text-align: center;
        border-bottom: 2px solid #3498db;
        padding-bottom: 15px;
    }
    
    h2 {
        color: #3498db;
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    
    .last-updated {
        text-align: center;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 30px;
    }
    
    .policy-section {
        margin-bottom: 30px;
    }
    
    p {
        margin-bottom: 15px;
    }
    
    ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    
    li {
        margin-bottom: 8px;
    }
    
    strong {
        color: #2c3e50;
    }
    
    @media (max-width: 768px) {
        .container {
            padding: 20px;
        }
        
        h1 {
            font-size: 26px;
        }
        
        h2 {
            font-size: 20px;
        }
    }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        line-height: 1.6;
        color: #333;
    }
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e74c3c;
    }
    .cookies-policy h2 {
        color: #3498db;
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 30px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f5f5f5;
    }
    .cookies-policy .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 30px;
    }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

#contact {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .contact-wrapper {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .contact-form {
        padding: 40px;
        background-color: hsl(218, 56%, 39%);
        color: white;
    }
    
    .contact-info {
        padding: 40px;
        background-color: white;
    }
    
    .contact-header {
        margin-bottom: 30px;
        color: white;
    }
    
    .contact-form label {
        color: white;
        font-weight: 500;
        margin-bottom: 8px;
    }
    
    .contact-form .form-control {
        border: none;
        border-radius: 5px;
        padding: 12px 15px;
        margin-bottom: 20px;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .contact-form .form-control:focus {
        box-shadow: 0 0 0 3px hsl(218, 56%, 64%);
    }
    
    .submit-btn {
        background-color: hsl(218, 56%, 64%);
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .submit-btn:hover {
        background-color: hsl(218, 56%, 24%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info h3 {
        color: hsl(218, 56%, 24%);
        margin-bottom: 20px;
    }
    
    .working-hours {
        margin-top: 30px;
    }
    
    .working-hours h4 {
        color: hsl(218, 56%, 39%);
        margin-bottom: 15px;
    }
    
    .hours-list {
        list-style: none;
        padding-left: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #e9ecef;
    }
    
    .consultation-process {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .consultation-process h4 {
        color: hsl(218, 56%, 39%);
        margin-bottom: 15px;
    }
    
    .process-step {
        margin-bottom: 15px;
        position: relative;
    }
    
    .process-step:before {
        content: "";
        position: absolute;
        top: 8px;
        left: -30px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: hsl(218, 56%, 64%);
    }
    
    .map-placeholder {
        width: 100%;
        height: 200px;
        background-color: #e9ecef;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #6c757d;
        font-weight: 500;
        margin-bottom: 20px;
    }
    
    @media (max-width: 991px) {
        .contact-form, .contact-info {
            padding: 30px;
        }
    }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 100px 0;
        background-color: #f9fafb;
    }
    
    .about-header {
        text-align: center;
        margin-bottom: 70px;
    }
    
    .about-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: hsl(218, 56%, 24%);
        margin-bottom: 20px;
    }
    
    .about-header .subtitle {
        font-size: 18px;
        color: hsl(218, 56%, 39%);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        color: #555;
    }
    
    .about-highlight {
        background-color: hsl(218, 56%, 64%, 0.1);
        border-left: 4px solid hsl(218, 56%, 39%);
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .about-values {
        margin-top: 60px;
    }
    
    .value-item {
        background-color: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateY(-5px);
    }
    
    .value-item h4 {
        color: hsl(218, 56%, 39%);
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 28px;
        font-weight: 600;
        color: hsl(218, 56%, 24%);
        margin-bottom: 25px;
    }
    
    .team-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
    }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

.services-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-title {
    color: hsl(218, 56%, 24%);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(218, 56%, 39%);
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(218, 56%, 64%);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(218, 56%, 39%);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    color: hsl(218, 56%, 64%);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(218, 56%, 24%);
}

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

.service-price {
    font-weight: 700;
    color: hsl(218, 56%, 39%);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.newsletter-section {
        background-color: hsl(218, 56%, 39%);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, hsla(218, 56%, 24%, 0.3) 0%, hsla(218, 56%, 24%, 0) 70%);
        z-index: 1;
    }
    
    .newsletter-section .container {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-heading {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .newsletter-heading::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(218, 56%, 64%);
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        max-width: 600px;
    }
    
    .benefit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .benefit-item i {
        color: hsl(218, 56%, 64%);
        font-size: 1.2rem;
        margin-right: 10px;
        margin-top: 3px;
    }
    
    .newsletter-form {
        background-color: hsla(218, 56%, 24%, 0.8);
        border-radius: 10px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        height: 50px;
        border-radius: 25px;
        border: 2px solid transparent;
        padding-left: 20px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(218, 56%, 64%);
        box-shadow: 0 0 0 0.25rem rgba(142, 177, 243, 0.25);
    }
    
    .btn-subscribe {
        height: 50px;
        border-radius: 25px;
        background-color: hsl(218, 56%, 64%);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0 30px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(218, 60%, 70%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-note {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }
    
    .form-title {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    @media (max-width: 767.98px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-form {
            margin-top: 2rem;
        }
    }

.testimonials-section {
    background-color: hsl(218, 56%, 95%);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-section h2 {
    color: hsl(218, 56%, 24%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 2.5rem;
}

.testimonials-section .subtitle {
    text-align: center;
    color: hsl(218, 56%, 39%);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(218, 56%, 39%);
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(218, 56%, 64%);
    font-size: 0.9rem;
}

.quote-icon {
    color: hsl(218, 56%, 64%);
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        line-height: 1.6;
        color: #333;
    }
    .terms-header {
        border-bottom: 2px solid #d9534f;
        padding-bottom: 10px;
        margin-bottom: 20px;
        color: #d9534f;
    }
    .terms-section {
        margin-bottom: 30px;
    }
    .terms-section h2 {
        color: #d9534f;
        font-size: 1.5em;
        border-left: 4px solid #d9534f;
        padding-left: 10px;
    }
    .terms-section p {
        text-align: justify;
        margin-bottom: 15px;
    }
    .terms-section ul {
        padding-left: 20px;
    }
    .terms-section li {
        margin-bottom: 8px;
    }
    .terms-footer {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        font-style: italic;
    }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

.faq-section {
        padding: 4rem 0;
        background-color: #f9fafb;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .faq-title {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(218, 56%, 24%);
        font-weight: 700;
    }
    
    .faq-subtitle {
        text-align: center;
        margin-bottom: 2.5rem;
        color: hsl(218, 56%, 39%);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .accordion-button {
        background-color: white;
        color: hsl(218, 56%, 39%);
        font-weight: 600;
        padding: 1.25rem 1.5rem;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: white;
        color: hsl(218, 56%, 39%);
        box-shadow: none;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0, 0, 0, 0.125);
    }
    
    .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='%233a5f9b'%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 {
        padding: 1.5rem;
        background-color: white;
        color: #4a5568;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 3rem 0;
        }
        
        .accordion-button {
            padding: 1rem 1.25rem;
        }
        
        .accordion-body {
            padding: 1.25rem;
        }
    }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 100px 0;
        background-color: #f9fafb;
    }
    
    .about-header {
        text-align: center;
        margin-bottom: 70px;
    }
    
    .about-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: hsl(218, 56%, 24%);
        margin-bottom: 20px;
    }
    
    .about-header .subtitle {
        font-size: 18px;
        color: hsl(218, 56%, 39%);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        color: #555;
    }
    
    .about-highlight {
        background-color: hsl(218, 56%, 64%, 0.1);
        border-left: 4px solid hsl(218, 56%, 39%);
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .about-values {
        margin-top: 60px;
    }
    
    .value-item {
        background-color: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateY(-5px);
    }
    
    .value-item h4 {
        color: hsl(218, 56%, 39%);
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 28px;
        font-weight: 600;
        color: hsl(218, 56%, 24%);
        margin-bottom: 25px;
    }
    
    .team-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
    }

.newsletter-section {
        background-color: hsl(218, 56%, 39%);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, hsla(218, 56%, 24%, 0.3) 0%, hsla(218, 56%, 24%, 0) 70%);
        z-index: 1;
    }
    
    .newsletter-section .container {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-heading {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .newsletter-heading::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(218, 56%, 64%);
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        max-width: 600px;
    }
    
    .benefit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .benefit-item i {
        color: hsl(218, 56%, 64%);
        font-size: 1.2rem;
        margin-right: 10px;
        margin-top: 3px;
    }
    
    .newsletter-form {
        background-color: hsla(218, 56%, 24%, 0.8);
        border-radius: 10px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        height: 50px;
        border-radius: 25px;
        border: 2px solid transparent;
        padding-left: 20px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(218, 56%, 64%);
        box-shadow: 0 0 0 0.25rem rgba(142, 177, 243, 0.25);
    }
    
    .btn-subscribe {
        height: 50px;
        border-radius: 25px;
        background-color: hsl(218, 56%, 64%);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0 30px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(218, 60%, 70%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-note {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }
    
    .form-title {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    @media (max-width: 767.98px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-form {
            margin-top: 2rem;
        }
    }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary-color: hsl(218, 56%, 39%);
            --secondary-color: hsl(218, 56%, 24%);
            --accent-color: hsl(218, 56%, 64%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background-color: rgba(0, 0, 0, 0.03);
        }
        
        .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(59, 97, 157, 0.25);
        }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
  }

  .hero-section {
    padding: 3rem 1rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #333;
  }

  .hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
  }

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

  .hero-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    animation: fadeInDown 1s ease-out;
  }

  .hero-section h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out;
  }

  .hero-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .hero-benefits {
    text-align: left;
    margin: 1.5rem 0;
  }

  .hero-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
  }

  .hero-benefits i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  .hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

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

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

.services-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-title {
    color: hsl(218, 56%, 24%);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(218, 56%, 39%);
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(218, 56%, 64%);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(218, 56%, 39%);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    color: hsl(218, 56%, 64%);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(218, 56%, 24%);
}

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

.service-price {
    font-weight: 700;
    color: hsl(218, 56%, 39%);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.faq-section {
        padding: 4rem 0;
        background-color: #f9fafb;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .faq-title {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(218, 56%, 24%);
        font-weight: 700;
    }
    
    .faq-subtitle {
        text-align: center;
        margin-bottom: 2.5rem;
        color: hsl(218, 56%, 39%);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .accordion-button {
        background-color: white;
        color: hsl(218, 56%, 39%);
        font-weight: 600;
        padding: 1.25rem 1.5rem;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: white;
        color: hsl(218, 56%, 39%);
        box-shadow: none;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0, 0, 0, 0.125);
    }
    
    .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='%233a5f9b'%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 {
        padding: 1.5rem;
        background-color: white;
        color: #4a5568;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 3rem 0;
        }
        
        .accordion-button {
            padding: 1rem 1.25rem;
        }
        
        .accordion-body {
            padding: 1.25rem;
        }
    }

.testimonials-section {
    background-color: hsl(218, 56%, 95%);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-section h2 {
    color: hsl(218, 56%, 24%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 2.5rem;
}

.testimonials-section .subtitle {
    text-align: center;
    color: hsl(218, 56%, 39%);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(218, 56%, 39%);
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(218, 56%, 64%);
    font-size: 0.9rem;
}

.quote-icon {
    color: hsl(218, 56%, 64%);
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.newsletter-section {
        background-color: hsl(218, 56%, 39%);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, hsla(218, 56%, 24%, 0.3) 0%, hsla(218, 56%, 24%, 0) 70%);
        z-index: 1;
    }
    
    .newsletter-section .container {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-heading {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .newsletter-heading::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(218, 56%, 64%);
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        max-width: 600px;
    }
    
    .benefit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .benefit-item i {
        color: hsl(218, 56%, 64%);
        font-size: 1.2rem;
        margin-right: 10px;
        margin-top: 3px;
    }
    
    .newsletter-form {
        background-color: hsla(218, 56%, 24%, 0.8);
        border-radius: 10px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        height: 50px;
        border-radius: 25px;
        border: 2px solid transparent;
        padding-left: 20px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(218, 56%, 64%);
        box-shadow: 0 0 0 0.25rem rgba(142, 177, 243, 0.25);
    }
    
    .btn-subscribe {
        height: 50px;
        border-radius: 25px;
        background-color: hsl(218, 56%, 64%);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0 30px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(218, 60%, 70%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-note {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }
    
    .form-title {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    @media (max-width: 767.98px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-form {
            margin-top: 2rem;
        }
    }

.about-section {
        font-family: 'Poppins', sans-serif;
        color: #333;
        padding: 100px 0;
        background-color: #f9fafb;
    }
    
    .about-header {
        text-align: center;
        margin-bottom: 70px;
    }
    
    .about-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: hsl(218, 56%, 24%);
        margin-bottom: 20px;
    }
    
    .about-header .subtitle {
        font-size: 18px;
        color: hsl(218, 56%, 39%);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        color: #555;
    }
    
    .about-highlight {
        background-color: hsl(218, 56%, 64%, 0.1);
        border-left: 4px solid hsl(218, 56%, 39%);
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .about-values {
        margin-top: 60px;
    }
    
    .value-item {
        background-color: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateY(-5px);
    }
    
    .value-item h4 {
        color: hsl(218, 56%, 39%);
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 28px;
        font-weight: 600;
        color: hsl(218, 56%, 24%);
        margin-bottom: 25px;
    }
    
    .team-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
    }

.statistics-section {
    background-color: hsl(218, 56%, 24%);
    color: white;
    padding: 80px 0;
}

.statistics-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.statistics-section .section-subtitle {
    color: hsl(218, 56%, 64%);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid hsl(218, 56%, 64%);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(218, 56%, 64%);
    margin-bottom: 15px;
}

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

.stat-title {
    font-size: 1.2rem;
    color: hsl(218, 56%, 64%);
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.graph-container {
    height: 150px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.graph-bar {
    position: absolute;
    bottom: 0;
    width: 10%;
    background-color: hsl(218, 56%, 64%);
    border-radius: 5px 5px 0 0;
    transition: height 1.5s ease;
}

.bar-1 { left: 5%; height: 40%; }
.bar-2 { left: 20%; height: 70%; }
.bar-3 { left: 35%; height: 90%; }
.bar-4 { left: 50%; height: 60%; }
.bar-5 { left: 65%; height: 80%; }
.bar-6 { left: 80%; height: 50%; }

.line-graph {
    height: 150px;
    position: relative;
    margin-top: 15px;
}

.line {
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, hsl(218, 56%, 39%) 0%, hsl(218, 56%, 64%) 100%);
    top: 50%;
    border-radius: 3px;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid hsl(218, 56%, 64%);
}

.dot-1 { left: 10%; top: 70%; }
.dot-2 { left: 25%; top: 30%; }
.dot-3 { left: 40%; top: 60%; }
.dot-4 { left: 55%; top: 20%; }
.dot-5 { left: 70%; top: 50%; }
.dot-6 { left: 85%; top: 40%; }

.pie-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(
        hsl(218, 56%, 64%) 0% 25%,
        hsl(218, 56%, 39%) 25% 55%,
        hsl(218, 80%, 80%) 55% 85%,
        hsl(218, 56%, 24%) 85% 100%
    );
    margin: 15px auto 0;
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

#contact {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .contact-wrapper {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .contact-form {
        padding: 40px;
        background-color: hsl(218, 56%, 39%);
        color: white;
    }
    
    .contact-info {
        padding: 40px;
        background-color: white;
    }
    
    .contact-header {
        margin-bottom: 30px;
        color: white;
    }
    
    .contact-form label {
        color: white;
        font-weight: 500;
        margin-bottom: 8px;
    }
    
    .contact-form .form-control {
        border: none;
        border-radius: 5px;
        padding: 12px 15px;
        margin-bottom: 20px;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .contact-form .form-control:focus {
        box-shadow: 0 0 0 3px hsl(218, 56%, 64%);
    }
    
    .submit-btn {
        background-color: hsl(218, 56%, 64%);
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .submit-btn:hover {
        background-color: hsl(218, 56%, 24%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info h3 {
        color: hsl(218, 56%, 24%);
        margin-bottom: 20px;
    }
    
    .working-hours {
        margin-top: 30px;
    }
    
    .working-hours h4 {
        color: hsl(218, 56%, 39%);
        margin-bottom: 15px;
    }
    
    .hours-list {
        list-style: none;
        padding-left: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #e9ecef;
    }
    
    .consultation-process {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .consultation-process h4 {
        color: hsl(218, 56%, 39%);
        margin-bottom: 15px;
    }
    
    .process-step {
        margin-bottom: 15px;
        position: relative;
    }
    
    .process-step:before {
        content: "";
        position: absolute;
        top: 8px;
        left: -30px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: hsl(218, 56%, 64%);
    }
    
    .map-placeholder {
        width: 100%;
        height: 200px;
        background-color: #e9ecef;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #6c757d;
        font-weight: 500;
        margin-bottom: 20px;
    }
    
    @media (max-width: 991px) {
        .contact-form, .contact-info {
            padding: 30px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section .section-title {
        margin-bottom: 60px;
        color: hsl(218, 56%, 24%);
        text-align: center;
    }
    
    .advantages-section .section-title h2 {
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .advantages-section .section-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(218, 56%, 39%);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(218, 56%, 64%);
    }
    
    .advantage-card .icon {
        font-size: 2.5rem;
        color: hsl(218, 56%, 39%);
        margin-bottom: 20px;
        display: inline-block;
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover .icon {
        color: hsl(218, 56%, 64%);
        transform: scale(1.1);
    }
    
    .advantage-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(218, 56%, 24%);
    }
    
    .advantage-card p {
        color: #6c757d;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 60px 0;
        }
        
        .advantage-card {
            margin-bottom: 30px;
        }
    }

:root {
    --primary-color: hsl(218, 56%, 39%);
    --secondary-color: hsl(218, 56%, 24%);
    --accent-color: hsl(218, 56%, 64%);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-btn-learn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}