:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(343, 52%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
  
  .about-section h3 {
    color: hsl(343, 52%, 19%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .about-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-image:hover {
    transform: translateY(-10px);
  }
  
  .highlight {
    color: hsl(343, 52%, 59%);
    font-weight: 600;
  }
  
  .divider {
    height: 3px;
    width: 70px;
    background-color: hsl(343, 52%, 34%);
    margin: 25px 0;
  }
  
  .about-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 991px) {
    .about-section {
      padding: 60px 0;
    }
    
    .image-container {
      margin-top: 40px;
    }
  }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-title {
        text-align: center;
        margin-bottom: 60px;
        color: hsl(343, 52%, 34%);
        font-weight: 700;
    }
    
    .advantages-title h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .advantages-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        text-align: center;
        padding: 30px 20px;
        border-radius: 10px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(343, 52%, 59%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(343, 52%, 34%);
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        color: hsl(343, 52%, 59%);
        transform: scale(1.1);
    }
    
    .advantage-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(343, 52%, 19%);
    }
    
    .advantage-description {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
        flex-grow: 1;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 60px 0;
        }
    }

.statistics-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .statistics-section h2 {
        color: hsl(343, 52%, 34%);
        margin-bottom: 3rem;
        font-weight: 700;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
    }
    
    .stat-card {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(343, 52%, 34%);
    }
    
    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: hsl(343, 52%, 34%);
    }
    
    .stat-title {
        font-size: 1.2rem;
        color: hsl(343, 52%, 19%);
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .stat-desc {
        color: #666;
        font-size: 0.95rem;
    }
    
    .graph-container {
        height: 200px;
        margin-top: 1.5rem;
        position: relative;
        background: linear-gradient(to top, rgba(231, 154, 174, 0.1), transparent);
        border-radius: 4px;
    }
    
    .graph-bar {
        position: absolute;
        bottom: 0;
        width: 10%;
        background-color: hsl(343, 52%, 59%);
        border-radius: 4px 4px 0 0;
        transition: height 1s ease;
    }
    
    .graph-label {
        position: absolute;
        bottom: -25px;
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        color: hsl(343, 52%, 19%);
    }
    
    .satisfaction-meter {
        height: 20px;
        background-color: #eee;
        border-radius: 10px;
        margin: 1.5rem 0;
        overflow: hidden;
    }
    
    .satisfaction-fill {
        height: 100%;
        background-color: hsl(343, 52%, 34%);
        border-radius: 10px;
    }
    
    @media (max-width: 768px) {
        .stat-number {
            font-size: 2.5rem;
        }
        
        .stat-icon {
            font-size: 2rem;
        }
    }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-container {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .privacy-title {
        color: #2c3e50;
        border-bottom: 2px solid #e74c3c;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-heading {
        color: #3498db;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .privacy-text {
        text-align: justify;
        margin-bottom: 15px;
    }
    
    .privacy-list {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    
    .privacy-list li {
        margin-bottom: 8px;
    }
    
    .privacy-highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    
    .privacy-date {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 30px;
    }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.cookies-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #4a4a4a;
        font-size: 2.2em;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 15px;
    }
    .cookies-policy h2 {
        color: #5a5a5a;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #e8e8e8;
        padding-left: 10px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid #d3d3d3;
        margin: 20px 0;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #e0e0e0;
        padding: 10px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f5f5f5;
        font-weight: 600;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.contact-section {
    padding: 100px 0;
    background-color: hsl(343, 52%, 95%);
  }
  
  .contact-heading {
    color: hsl(343, 52%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .contact-subheading {
    color: hsl(343, 52%, 19%);
    margin-bottom: 20px;
  }
  
  .contact-card {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  
  .contact-form {
    padding: 40px;
    background-color: white;
  }
  
  .contact-info {
    padding: 40px;
    background-color: hsl(343, 52%, 34%);
    color: white;
  }
  
  .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-color: hsl(343, 52%, 59%);
  }
  
  .contact-btn {
    background-color: hsl(343, 52%, 59%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
  }
  
  .contact-btn:hover {
    background-color: hsl(343, 52%, 34%);
    transform: translateY(-2px);
  }
  
  .info-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: white;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 20px;
  }
  
  .info-icon {
    margin-right: 15px;
    width: 25px;
    color: hsl(343, 52%, 59%);
  }
  
  .working-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .day-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  @media (max-width: 767px) {
    .contact-form, .contact-info {
      padding: 25px;
    }
  }

.about-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(343, 52%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
  
  .about-section h3 {
    color: hsl(343, 52%, 19%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .about-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-image:hover {
    transform: translateY(-10px);
  }
  
  .highlight {
    color: hsl(343, 52%, 59%);
    font-weight: 600;
  }
  
  .divider {
    height: 3px;
    width: 70px;
    background-color: hsl(343, 52%, 34%);
    margin: 25px 0;
  }
  
  .about-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 991px) {
    .about-section {
      padding: 60px 0;
    }
    
    .image-container {
      margin-top: 40px;
    }
  }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.services-section {
        padding: 100px 0;
        background-color: #fff;
    }
    .services-section h2 {
        color: hsl(343, 52%, 34%);
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        position: relative;
    }
    .services-section h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    .service-card {
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 30px 20px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(343, 52%, 59%);
    }
    .service-card i {
        font-size: 48px;
        color: hsl(343, 52%, 34%);
        margin-bottom: 20px;
        display: block;
        text-align: center;
    }
    .service-card h3 {
        font-size: 22px;
        color: hsl(343, 52%, 19%);
        margin-bottom: 15px;
        text-align: center;
    }
    .service-card p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .service-price {
        font-weight: 700;
        color: hsl(343, 52%, 34%);
        font-size: 20px;
        text-align: center;
        margin-top: auto;
    }
    .service-note {
        font-size: 14px;
        color: #888;
        font-style: italic;
        text-align: center;
        margin-top: 10px;
    }
    .terms-container {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 30px;
        margin-top: 50px;
    }
    .terms-container h3 {
        color: hsl(343, 52%, 34%);
        margin-bottom: 20px;
    }
    .terms-list {
        list-style-type: none;
        padding-left: 0;
    }
    .terms-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        color: #555;
    }
    .terms-list li:before {
        content: "\f058";
        font-family: "Bootstrap-icons";
        position: absolute;
        left: 0;
        color: hsl(343, 52%, 59%);
    }

.newsletter-section {
        background-color: hsl(343, 52%, 95%);
        padding: 4rem 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin: 3rem 0;
    }
    
    .newsletter-container {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .newsletter-header {
        color: hsl(343, 52%, 34%);
        margin-bottom: 2rem;
        font-weight: 700;
        position: relative;
    }
    
    .newsletter-header:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
    }
    
    .newsletter-content {
        margin-bottom: 2rem;
        color: hsl(343, 52%, 19%);
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .benefit-item {
        margin: 1rem 0;
        display: flex;
        align-items: center;
    }
    
    .benefit-icon {
        background-color: hsl(343, 52%, 34%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .newsletter-form {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .form-control:focus {
        border-color: hsl(343, 52%, 59%);
        box-shadow: 0 0 0 0.25rem rgba(158, 54, 94, 0.25);
    }
    
    .btn-subscribe {
        background-color: hsl(343, 52%, 34%);
        border: none;
        color: white;
        padding: 10px 25px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(343, 52%, 59%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .form-privacy {
        font-size: 0.85rem;
        margin-top: 1rem;
        color: #6c757d;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 2rem 1rem;
        }
    }

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .testimonials-section h2 {
    color: hsl(343, 52%, 34%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
  }
  
  .testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    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;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(343, 52%, 34%);
    margin-bottom: 5px;
  }
  
  .testimonial-location {
    color: hsl(343, 52%, 59%);
    font-size: 0.9em;
  }
  
  .testimonial-quote {
    font-size: 24px;
    color: hsl(343, 52%, 59%);
    margin-bottom: 15px;
  }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.terms-conditions {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        padding: 40px 0;
        background-color: #f9f9f9;
    }
    
    .tc-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 30px 40px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    .terms-conditions h1 {
        text-align: center;
        color: #1a1a1a;
        font-size: 32px;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .last-updated {
        text-align: center;
        color: #777;
        font-size: 14px;
        margin-bottom: 30px;
        font-style: italic;
    }
    
    .tc-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .tc-section:last-child {
        border-bottom: none;
    }
    
    .terms-conditions h2 {
        color: #333;
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .terms-conditions p {
        margin-bottom: 15px;
        color: #444;
    }
    
    .terms-conditions ul {
        padding-left: 25px;
        margin-bottom: 15px;
    }
    
    .terms-conditions li {
        margin-bottom: 8px;
        position: relative;
    }
    
    .terms-conditions a {
        color: #0066cc;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .terms-conditions a:hover {
        color: #004499;
        text-decoration: underline;
    }
    
    @media (max-width: 768px) {
        .tc-container {
            padding: 20px;
        }
        
        .terms-conditions h1 {
            font-size: 26px;
        }
        
        .terms-conditions h2 {
            font-size: 20px;
        }
    }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.faq-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .faq-section h2 {
        color: hsl(343, 52%, 34%);
        margin-bottom: 40px;
        text-align: center;
        font-weight: 700;
    }
    
    .faq-section .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .faq-section .accordion-header {
        background-color: #fff;
    }
    
    .faq-section .accordion-button {
        font-weight: 600;
        color: hsl(343, 52%, 19%);
        background-color: #fff;
        padding: 20px;
        box-shadow: none;
    }
    
    .faq-section .accordion-button:not(.collapsed) {
        color: hsl(343, 52%, 34%);
        background-color: rgba(228, 183, 193, 0.1);
    }
    
    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    
    .faq-section .accordion-button::after {
        background-color: hsl(343, 52%, 59%);
        border-radius: 50%;
        background-position: center;
        background-size: 12px;
        width: 24px;
        height: 24px;
    }
    
    .faq-section .accordion-body {
        padding: 5px 20px 20px;
        color: #555;
        line-height: 1.7;
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 0;
        }
        
        .faq-section h2 {
            margin-bottom: 30px;
        }
    }

.about-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(343, 52%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
  
  .about-section h3 {
    color: hsl(343, 52%, 19%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .about-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-image:hover {
    transform: translateY(-10px);
  }
  
  .highlight {
    color: hsl(343, 52%, 59%);
    font-weight: 600;
  }
  
  .divider {
    height: 3px;
    width: 70px;
    background-color: hsl(343, 52%, 34%);
    margin: 25px 0;
  }
  
  .about-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 991px) {
    .about-section {
      padding: 60px 0;
    }
    
    .image-container {
      margin-top: 40px;
    }
  }

.newsletter-section {
        background-color: hsl(343, 52%, 95%);
        padding: 4rem 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin: 3rem 0;
    }
    
    .newsletter-container {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .newsletter-header {
        color: hsl(343, 52%, 34%);
        margin-bottom: 2rem;
        font-weight: 700;
        position: relative;
    }
    
    .newsletter-header:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
    }
    
    .newsletter-content {
        margin-bottom: 2rem;
        color: hsl(343, 52%, 19%);
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .benefit-item {
        margin: 1rem 0;
        display: flex;
        align-items: center;
    }
    
    .benefit-icon {
        background-color: hsl(343, 52%, 34%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .newsletter-form {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .form-control:focus {
        border-color: hsl(343, 52%, 59%);
        box-shadow: 0 0 0 0.25rem rgba(158, 54, 94, 0.25);
    }
    
    .btn-subscribe {
        background-color: hsl(343, 52%, 34%);
        border: none;
        color: white;
        padding: 10px 25px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(343, 52%, 59%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .form-privacy {
        font-size: 0.85rem;
        margin-top: 1rem;
        color: #6c757d;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 2rem 1rem;
        }
    }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}

:root {
            --primary-color: hsl(343, 52%, 34%);
            --secondary-color: hsl(343, 52%, 19%);
            --accent-color: hsl(343, 52%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--secondary-color);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.hero-section {
        padding: 80px 0;
        background-color: #fff;
        overflow: hidden;
    }
    
    .hero-content h1 {
        color: hsl(343, 52%, 34%);
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        color: hsl(343, 52%, 19%);
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 25px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 25px;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease;
    }
    
    .hero-image img:hover {
        transform: scale(1.02);
    }
    
    .benefits-list {
        margin-bottom: 30px;
    }
    
    .benefits-list li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 28px;
    }
    
    .benefits-list i {
        color: hsl(343, 52%, 59%);
        position: absolute;
        left: 0;
        top: 5px;
    }
    
    .cta-buttons .btn-primary {
        background-color: hsl(343, 52%, 34%);
        border: none;
        padding: 12px 28px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .cta-buttons .btn-primary:hover {
        background-color: hsl(343, 52%, 29%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    
    .cta-buttons .btn-outline-secondary {
        color: hsl(343, 52%, 34%);
        border-color: hsl(343, 52%, 34%);
        padding: 12px 28px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-left: 15px;
    }
    
    .cta-buttons .btn-outline-secondary:hover {
        background-color: hsl(343, 52%, 59%);
        border-color: hsl(343, 52%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 991px) {
        .hero-content {
            padding-top: 30px;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.8rem;
        }
        
        .benefits-list {
            display: inline-block;
            text-align: left;
        }
        
        .cta-buttons {
            justify-content: center;
        }
        
        .cta-buttons .btn-outline-secondary {
            margin-left: 0;
            margin-top: 15px;
        }
    }
    
    @media (max-width: 767px) {
        .hero-section {
            padding: 50px 0;
        }
        
        .hero-content h1 {
            font-size: 2.2rem;
        }
        
        .hero-content h2 {
            font-size: 1.5rem;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .cta-buttons .btn {
            width: 100%;
            margin-bottom: 15px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-title {
        text-align: center;
        margin-bottom: 60px;
        color: hsl(343, 52%, 34%);
        font-weight: 700;
    }
    
    .advantages-title h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .advantages-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        text-align: center;
        padding: 30px 20px;
        border-radius: 10px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(343, 52%, 59%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(343, 52%, 34%);
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        color: hsl(343, 52%, 59%);
        transform: scale(1.1);
    }
    
    .advantage-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(343, 52%, 19%);
    }
    
    .advantage-description {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
        flex-grow: 1;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 60px 0;
        }
    }

.newsletter-section {
        background-color: hsl(343, 52%, 95%);
        padding: 4rem 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin: 3rem 0;
    }
    
    .newsletter-container {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .newsletter-header {
        color: hsl(343, 52%, 34%);
        margin-bottom: 2rem;
        font-weight: 700;
        position: relative;
    }
    
    .newsletter-header:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
    }
    
    .newsletter-content {
        margin-bottom: 2rem;
        color: hsl(343, 52%, 19%);
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .benefit-item {
        margin: 1rem 0;
        display: flex;
        align-items: center;
    }
    
    .benefit-icon {
        background-color: hsl(343, 52%, 34%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .newsletter-form {
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .form-control:focus {
        border-color: hsl(343, 52%, 59%);
        box-shadow: 0 0 0 0.25rem rgba(158, 54, 94, 0.25);
    }
    
    .btn-subscribe {
        background-color: hsl(343, 52%, 34%);
        border: none;
        color: white;
        padding: 10px 25px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(343, 52%, 59%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .form-privacy {
        font-size: 0.85rem;
        margin-top: 1rem;
        color: #6c757d;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 2rem 1rem;
        }
    }

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .testimonials-section h2 {
    color: hsl(343, 52%, 34%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
  }
  
  .testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    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;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(343, 52%, 34%);
    margin-bottom: 5px;
  }
  
  .testimonial-location {
    color: hsl(343, 52%, 59%);
    font-size: 0.9em;
  }
  
  .testimonial-quote {
    font-size: 24px;
    color: hsl(343, 52%, 59%);
    margin-bottom: 15px;
  }

.faq-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .faq-section h2 {
        color: hsl(343, 52%, 34%);
        margin-bottom: 40px;
        text-align: center;
        font-weight: 700;
    }
    
    .faq-section .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .faq-section .accordion-header {
        background-color: #fff;
    }
    
    .faq-section .accordion-button {
        font-weight: 600;
        color: hsl(343, 52%, 19%);
        background-color: #fff;
        padding: 20px;
        box-shadow: none;
    }
    
    .faq-section .accordion-button:not(.collapsed) {
        color: hsl(343, 52%, 34%);
        background-color: rgba(228, 183, 193, 0.1);
    }
    
    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    
    .faq-section .accordion-button::after {
        background-color: hsl(343, 52%, 59%);
        border-radius: 50%;
        background-position: center;
        background-size: 12px;
        width: 24px;
        height: 24px;
    }
    
    .faq-section .accordion-body {
        padding: 5px 20px 20px;
        color: #555;
        line-height: 1.7;
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 0;
        }
        
        .faq-section h2 {
            margin-bottom: 30px;
        }
    }

.contact-section {
    padding: 100px 0;
    background-color: hsl(343, 52%, 95%);
  }
  
  .contact-heading {
    color: hsl(343, 52%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .contact-subheading {
    color: hsl(343, 52%, 19%);
    margin-bottom: 20px;
  }
  
  .contact-card {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  
  .contact-form {
    padding: 40px;
    background-color: white;
  }
  
  .contact-info {
    padding: 40px;
    background-color: hsl(343, 52%, 34%);
    color: white;
  }
  
  .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-color: hsl(343, 52%, 59%);
  }
  
  .contact-btn {
    background-color: hsl(343, 52%, 59%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
  }
  
  .contact-btn:hover {
    background-color: hsl(343, 52%, 34%);
    transform: translateY(-2px);
  }
  
  .info-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: white;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 20px;
  }
  
  .info-icon {
    margin-right: 15px;
    width: 25px;
    color: hsl(343, 52%, 59%);
  }
  
  .working-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .day-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  @media (max-width: 767px) {
    .contact-form, .contact-info {
      padding: 25px;
    }
  }

.about-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(343, 52%, 34%);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
  
  .about-section h3 {
    color: hsl(343, 52%, 19%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .about-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-image:hover {
    transform: translateY(-10px);
  }
  
  .highlight {
    color: hsl(343, 52%, 59%);
    font-weight: 600;
  }
  
  .divider {
    height: 3px;
    width: 70px;
    background-color: hsl(343, 52%, 34%);
    margin: 25px 0;
  }
  
  .about-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 991px) {
    .about-section {
      padding: 60px 0;
    }
    
    .image-container {
      margin-top: 40px;
    }
  }

.services-section {
        padding: 100px 0;
        background-color: #fff;
    }
    .services-section h2 {
        color: hsl(343, 52%, 34%);
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        position: relative;
    }
    .services-section h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    .service-card {
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 30px 20px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(343, 52%, 59%);
    }
    .service-card i {
        font-size: 48px;
        color: hsl(343, 52%, 34%);
        margin-bottom: 20px;
        display: block;
        text-align: center;
    }
    .service-card h3 {
        font-size: 22px;
        color: hsl(343, 52%, 19%);
        margin-bottom: 15px;
        text-align: center;
    }
    .service-card p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .service-price {
        font-weight: 700;
        color: hsl(343, 52%, 34%);
        font-size: 20px;
        text-align: center;
        margin-top: auto;
    }
    .service-note {
        font-size: 14px;
        color: #888;
        font-style: italic;
        text-align: center;
        margin-top: 10px;
    }
    .terms-container {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 30px;
        margin-top: 50px;
    }
    .terms-container h3 {
        color: hsl(343, 52%, 34%);
        margin-bottom: 20px;
    }
    .terms-list {
        list-style-type: none;
        padding-left: 0;
    }
    .terms-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        color: #555;
    }
    .terms-list li:before {
        content: "\f058";
        font-family: "Bootstrap-icons";
        position: absolute;
        left: 0;
        color: hsl(343, 52%, 59%);
    }

.statistics-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .statistics-section h2 {
        color: hsl(343, 52%, 34%);
        margin-bottom: 3rem;
        font-weight: 700;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(343, 52%, 59%);
    }
    
    .stat-card {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(343, 52%, 34%);
    }
    
    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: hsl(343, 52%, 34%);
    }
    
    .stat-title {
        font-size: 1.2rem;
        color: hsl(343, 52%, 19%);
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .stat-desc {
        color: #666;
        font-size: 0.95rem;
    }
    
    .graph-container {
        height: 200px;
        margin-top: 1.5rem;
        position: relative;
        background: linear-gradient(to top, rgba(231, 154, 174, 0.1), transparent);
        border-radius: 4px;
    }
    
    .graph-bar {
        position: absolute;
        bottom: 0;
        width: 10%;
        background-color: hsl(343, 52%, 59%);
        border-radius: 4px 4px 0 0;
        transition: height 1s ease;
    }
    
    .graph-label {
        position: absolute;
        bottom: -25px;
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        color: hsl(343, 52%, 19%);
    }
    
    .satisfaction-meter {
        height: 20px;
        background-color: #eee;
        border-radius: 10px;
        margin: 1.5rem 0;
        overflow: hidden;
    }
    
    .satisfaction-fill {
        height: 100%;
        background-color: hsl(343, 52%, 34%);
        border-radius: 10px;
    }
    
    @media (max-width: 768px) {
        .stat-number {
            font-size: 2.5rem;
        }
        
        .stat-icon {
            font-size: 2rem;
        }
    }

:root {
    --primary-color: hsl(343, 52%, 34%);
    --secondary-color: hsl(343, 52%, 19%);
    --accent-color: hsl(343, 52%, 59%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
}

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

footer p {
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.company-info {
    margin-bottom: 2rem;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice p {
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-actions {
        margin-top: 10px;
    }
}