:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(63, 31%, 38%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(63, 31%, 63%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .about-highlight {
        color: hsl(63, 31%, 23%);
        font-weight: 600;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-values {
        margin-top: 40px;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .value-item {
        margin-bottom: 20px;
    }
    
    .value-title {
        color: hsl(63, 31%, 38%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    @media (max-width: 767px) {
        .about-image-container {
            margin-top: 30px;
        }
    }

.advantages-section {
    padding: 80px 0;
    background-color: #f9f9f7;
}

.advantages-section h2 {
    color: hsl(63, 31%, 23%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.advantages-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(63, 31%, 38%);
    margin: 15px auto 0;
}

.advantage-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: 30px;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom: 3px solid hsl(63, 31%, 63%);
}

.advantage-icon {
    font-size: 2.5rem;
    color: hsl(63, 31%, 38%);
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(63, 31%, 23%);
}

.advantage-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.statistics-section {
    background-color: hsl(63, 31%, 38%);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.statistics-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.statistics-section h2 {
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.statistics-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: hsl(63, 31%, 63%);
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: hsl(63, 31%, 23%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, hsl(63, 31%, 63%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

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

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

.cookies-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 20px;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #2980b9;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .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: #f2f6f9;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 40px;
    }

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

#contact {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .contact-section {
    background-color: hsl(63, 31%, 94%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-header {
    color: hsl(63, 31%, 23%);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .contact-subheader {
    color: hsl(63, 31%, 38%);
    margin-bottom: 20px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .form-label {
    color: hsl(63, 31%, 23%);
    font-weight: 600;
  }
  
  .form-control:focus {
    border-color: hsl(63, 31%, 63%);
    box-shadow: 0 0 0 0.25rem rgba(156, 159, 122, 0.25);
  }
  
  .contact-btn {
    background-color: hsl(63, 31%, 38%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: hsl(63, 31%, 23%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .contact-info {
    padding: 25px;
  }
  
  .info-item {
    margin-bottom: 20px;
  }
  
  .info-title {
    color: hsl(63, 31%, 38%);
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .business-hours {
    background-color: hsl(63, 31%, 94%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(63, 31%, 63%);
  }
  
  .hours-title {
    color: hsl(63, 31%, 23%);
    font-weight: 600;
  }
  
  .hours-day {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  
  .day-name {
    font-weight: 500;
  }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(63, 31%, 38%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(63, 31%, 63%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .about-highlight {
        color: hsl(63, 31%, 23%);
        font-weight: 600;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-values {
        margin-top: 40px;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .value-item {
        margin-bottom: 20px;
    }
    
    .value-title {
        color: hsl(63, 31%, 38%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    @media (max-width: 767px) {
        .about-image-container {
            margin-top: 30px;
        }
    }

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

.services-section {
        padding: 5rem 0;
        background-color: #f8f9fa;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(63, 31%, 23%);
    }
    
    .service-card {
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        border-color: hsl(63, 31%, 63%);
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(63, 31%, 38%);
        color: white;
        font-size: 30px;
        margin: 0 auto;
        border-radius: 50%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(63, 31%, 23%);
        text-align: center;
    }
    
    .service-description {
        color: #6c757d;
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(63, 31%, 38%);
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 10px;
    }

.newsletter-section {
        background: linear-gradient(to right, hsl(63, 31%, 38%), hsl(63, 31%, 23%));
        padding: 4rem 0;
        color: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
    }
    
    .benefits-list li::before {
        content: "✓";
        color: hsl(63, 31%, 63%);
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-control {
        height: 55px;
        font-size: 1rem;
        border: 2px solid transparent;
        transition: all 0.3s;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(214, 217, 153, 0.4);
        border-color: hsl(63, 31%, 63%);
    }
    
    .btn-subscribe {
        background-color: hsl(63, 31%, 63%);
        color: hsl(63, 31%, 23%);
        font-weight: 700;
        height: 55px;
        border: none;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-subscribe:hover {
        background-color: #fff;
        color: hsl(63, 31%, 23%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .btn-subscribe {
            margin-top: 1rem;
            width: 100%;
        }
    }

.testimonials-section {
        padding: 80px 0;
        background-color: #f9f9f1;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        color: hsl(63, 31%, 23%);
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .testimonials-subtitle {
        color: hsl(63, 31%, 38%);
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 25px;
        height: 100%;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
        border-top: 4px solid hsl(63, 31%, 63%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        position: relative;
    }
    
    .testimonial-text::before {
        content: """;
        font-size: 60px;
        color: hsl(63, 31%, 63%);
        position: absolute;
        top: -20px;
        left: -10px;
        opacity: 0.3;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(63, 31%, 23%);
    }
    
    .testimonial-location {
        color: #777;
        font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
        .testimonials-section {
            padding: 50px 0;
        }
    }

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

.terms-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .terms-header {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 2px solid #4CAF50;
        margin-bottom: 30px;
    }
    
    .terms-section {
        margin-bottom: 25px;
    }
    
    .terms-section h2 {
        color: #2E7D32;
        font-size: 22px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .terms-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .terms-section ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .terms-section li {
        margin-bottom: 8px;
    }
    
    .terms-date {
        text-align: right;
        font-style: italic;
        margin-top: 30px;
        color: #757575;
    }

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f7;
  }
  
  .faq-title {
    color: hsl(63, 31%, 23%);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
  }
  
  .faq-subtitle {
    color: hsl(63, 31%, 38%);
    margin-bottom: 30px;
    text-align: center;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(63, 31%, 63%);
    color: hsl(63, 31%, 23%);
    font-weight: 600;
    box-shadow: none;
  }
  
  .accordion-button {
    background-color: #fff;
    color: hsl(63, 31%, 38%);
    font-weight: 500;
    border-radius: 8px !important;
    padding: 16px 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 2px hsl(63, 31%, 63%);
  }
  
  .accordion-button:hover {
    background-color: hsl(63, 31%, 95%);
  }
  
  .accordion-body {
    padding: 20px;
    color: #444;
    line-height: 1.6;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  @media (max-width: 767px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .accordion-button {
      padding: 14px 16px;
    }
    
    .accordion-body {
      padding: 16px;
    }
  }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(63, 31%, 38%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(63, 31%, 63%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .about-highlight {
        color: hsl(63, 31%, 23%);
        font-weight: 600;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-values {
        margin-top: 40px;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .value-item {
        margin-bottom: 20px;
    }
    
    .value-title {
        color: hsl(63, 31%, 38%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    @media (max-width: 767px) {
        .about-image-container {
            margin-top: 30px;
        }
    }

.newsletter-section {
        background: linear-gradient(to right, hsl(63, 31%, 38%), hsl(63, 31%, 23%));
        padding: 4rem 0;
        color: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
    }
    
    .benefits-list li::before {
        content: "✓";
        color: hsl(63, 31%, 63%);
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-control {
        height: 55px;
        font-size: 1rem;
        border: 2px solid transparent;
        transition: all 0.3s;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(214, 217, 153, 0.4);
        border-color: hsl(63, 31%, 63%);
    }
    
    .btn-subscribe {
        background-color: hsl(63, 31%, 63%);
        color: hsl(63, 31%, 23%);
        font-weight: 700;
        height: 55px;
        border: none;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-subscribe:hover {
        background-color: #fff;
        color: hsl(63, 31%, 23%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .btn-subscribe {
            margin-top: 1rem;
            width: 100%;
        }
    }

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

:root {
            --primary-color: hsl(63, 31%, 38%);
            --secondary-color: hsl(63, 31%, 23%);
            --accent-color: hsl(63, 31%, 63%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            letter-spacing: 1px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            margin-left: 10px;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !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;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
        }

.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .hero-section h1 {
    color: hsl(63, 31%, 23%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    color: hsl(63, 31%, 38%);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

  .hero-content {
    padding-right: 20px;
  }

  .hero-description {
    color: #495057;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .hero-benefits {
    margin: 30px 0;
  }

  .hero-benefits li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
  }

  .hero-benefits li i {
    color: hsl(63, 31%, 38%);
    position: absolute;
    left: 0;
    top: 5px;
  }

  .hero-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
  }

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

  .cta-primary {
    background-color: hsl(63, 31%, 38%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .cta-primary:hover {
    background-color: hsl(63, 31%, 23%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .cta-secondary {
    background-color: transparent;
    color: hsl(63, 31%, 38%);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid hsl(63, 31%, 38%);
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }

  .cta-secondary:hover {
    background-color: hsl(63, 31%, 63%);
    color: hsl(63, 31%, 23%);
    border-color: hsl(63, 31%, 63%);
    transform: translateY(-3px);
  }

  .cta-container {
    margin-top: 35px;
  }

  @media (max-width: 991px) {
    .hero-content {
      padding-right: 0;
      margin-bottom: 40px;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    .hero-section {
      padding: 50px 0;
    }
  }

.statistics-section {
    background-color: hsl(63, 31%, 38%);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.statistics-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.statistics-section h2 {
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.statistics-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: hsl(63, 31%, 63%);
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: hsl(63, 31%, 23%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, hsl(63, 31%, 63%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

#contact {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .contact-section {
    background-color: hsl(63, 31%, 94%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-header {
    color: hsl(63, 31%, 23%);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .contact-subheader {
    color: hsl(63, 31%, 38%);
    margin-bottom: 20px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .form-label {
    color: hsl(63, 31%, 23%);
    font-weight: 600;
  }
  
  .form-control:focus {
    border-color: hsl(63, 31%, 63%);
    box-shadow: 0 0 0 0.25rem rgba(156, 159, 122, 0.25);
  }
  
  .contact-btn {
    background-color: hsl(63, 31%, 38%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: hsl(63, 31%, 23%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .contact-info {
    padding: 25px;
  }
  
  .info-item {
    margin-bottom: 20px;
  }
  
  .info-title {
    color: hsl(63, 31%, 38%);
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .business-hours {
    background-color: hsl(63, 31%, 94%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(63, 31%, 63%);
  }
  
  .hours-title {
    color: hsl(63, 31%, 23%);
    font-weight: 600;
  }
  
  .hours-day {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  
  .day-name {
    font-weight: 500;
  }

.services-section {
        padding: 5rem 0;
        background-color: #f8f9fa;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(63, 31%, 23%);
    }
    
    .service-card {
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        border-color: hsl(63, 31%, 63%);
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(63, 31%, 38%);
        color: white;
        font-size: 30px;
        margin: 0 auto;
        border-radius: 50%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(63, 31%, 23%);
        text-align: center;
    }
    
    .service-description {
        color: #6c757d;
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(63, 31%, 38%);
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 10px;
    }

.newsletter-section {
        background: linear-gradient(to right, hsl(63, 31%, 38%), hsl(63, 31%, 23%));
        padding: 4rem 0;
        color: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
    }
    
    .benefits-list li::before {
        content: "✓";
        color: hsl(63, 31%, 63%);
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-control {
        height: 55px;
        font-size: 1rem;
        border: 2px solid transparent;
        transition: all 0.3s;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(214, 217, 153, 0.4);
        border-color: hsl(63, 31%, 63%);
    }
    
    .btn-subscribe {
        background-color: hsl(63, 31%, 63%);
        color: hsl(63, 31%, 23%);
        font-weight: 700;
        height: 55px;
        border: none;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-subscribe:hover {
        background-color: #fff;
        color: hsl(63, 31%, 23%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 3rem 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .btn-subscribe {
            margin-top: 1rem;
            width: 100%;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(63, 31%, 38%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(63, 31%, 63%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .about-highlight {
        color: hsl(63, 31%, 23%);
        font-weight: 600;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-values {
        margin-top: 40px;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .value-item {
        margin-bottom: 20px;
    }
    
    .value-title {
        color: hsl(63, 31%, 38%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    @media (max-width: 767px) {
        .about-image-container {
            margin-top: 30px;
        }
    }

.advantages-section {
    padding: 80px 0;
    background-color: #f9f9f7;
}

.advantages-section h2 {
    color: hsl(63, 31%, 23%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.advantages-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(63, 31%, 38%);
    margin: 15px auto 0;
}

.advantage-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: 30px;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom: 3px solid hsl(63, 31%, 63%);
}

.advantage-icon {
    font-size: 2.5rem;
    color: hsl(63, 31%, 38%);
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(63, 31%, 23%);
}

.advantage-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.testimonials-section {
        padding: 80px 0;
        background-color: #f9f9f1;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        color: hsl(63, 31%, 23%);
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .testimonials-subtitle {
        color: hsl(63, 31%, 38%);
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 25px;
        height: 100%;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
        border-top: 4px solid hsl(63, 31%, 63%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        position: relative;
    }
    
    .testimonial-text::before {
        content: """;
        font-size: 60px;
        color: hsl(63, 31%, 63%);
        position: absolute;
        top: -20px;
        left: -10px;
        opacity: 0.3;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(63, 31%, 23%);
    }
    
    .testimonial-location {
        color: #777;
        font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
        .testimonials-section {
            padding: 50px 0;
        }
    }

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f7;
  }
  
  .faq-title {
    color: hsl(63, 31%, 23%);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
  }
  
  .faq-subtitle {
    color: hsl(63, 31%, 38%);
    margin-bottom: 30px;
    text-align: center;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(63, 31%, 63%);
    color: hsl(63, 31%, 23%);
    font-weight: 600;
    box-shadow: none;
  }
  
  .accordion-button {
    background-color: #fff;
    color: hsl(63, 31%, 38%);
    font-weight: 500;
    border-radius: 8px !important;
    padding: 16px 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 2px hsl(63, 31%, 63%);
  }
  
  .accordion-button:hover {
    background-color: hsl(63, 31%, 95%);
  }
  
  .accordion-body {
    padding: 20px;
    color: #444;
    line-height: 1.6;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  @media (max-width: 767px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .accordion-button {
      padding: 14px 16px;
    }
    
    .accordion-body {
      padding: 16px;
    }
  }

:root {
    --primary-color: hsl(63, 31%, 38%);
    --secondary-color: hsl(63, 31%, 23%);
    --accent-color: hsl(63, 31%, 63%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    font-family: 'Roboto', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .company-description {
    max-width: 350px;
}

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

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

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

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.cookie-btn-learn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}