:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.about-section {
        padding: 5rem 0;
        background-color: #f8f5fa;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(287, 30%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        color: hsl(287, 30%, 18%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .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-highlight {
        color: hsl(287, 30%, 58%);
        font-weight: 600;
    }
    
    .about-divider {
        height: 3px;
        width: 70px;
        background-color: hsl(287, 30%, 58%);
        margin: 2rem auto;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-image-container {
            margin-bottom: 2rem;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9f6fa;
    }
    
    .section-title {
        color: hsl(287, 30%, 33%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(287, 30%, 58%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        background-color: white;
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(287, 30%, 58%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(287, 30%, 58%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantage-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: hsl(287, 30%, 33%);
        margin-bottom: 15px;
    }
    
    .advantage-description {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantage-card {
            margin-bottom: 30px;
        }
    }

.statistics-section {
        background-color: hsl(287, 30%, 18%);
        color: white;
        padding: 5rem 0;
    }
    
    .statistics-section h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
        text-align: center;
        color: hsl(287, 30%, 58%);
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .statistics-section .counter-box {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .statistics-section .counter-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .statistics-section .counter-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(287, 30%, 58%);
    }
    
    .statistics-section .counter-number {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        font-family: 'Montserrat', sans-serif;
    }
    
    .statistics-section .counter-title {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
        color: hsl(287, 30%, 58%);
    }
    
    .statistics-section .counter-description {
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }
    
    @media (max-width: 767px) {
        .statistics-section .counter-number {
            font-size: 2.5rem;
        }
        
        .statistics-section .counter-title {
            font-size: 1.1rem;
        }
    }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.privacy-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .privacy-header {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 2px solid #f5f5f5;
        margin-bottom: 30px;
    }
    .privacy-title {
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    .privacy-subtitle {
        font-size: 16px;
        color: #7f8c8d;
        margin-bottom: 20px;
    }
    .privacy-section {
        margin-bottom: 30px;
    }
    .privacy-section-title {
        font-size: 22px;
        color: #2c3e50;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #ecf0f1;
    }
    .privacy-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .privacy-list {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .privacy-list-item {
        margin-bottom: 8px;
    }
    .privacy-date {
        font-style: italic;
        text-align: center;
        margin-top: 40px;
        color: #7f8c8d;
    }
    .privacy-highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin-bottom: 20px;
    }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.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.5em;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #e74c3c;
        padding-bottom: 10px;
    }
    
    .cookies-policy h2 {
        color: #3498db;
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #3498db;
        padding-left: 10px;
    }
    
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .cookies-policy ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    
    .cookies-policy li {
        margin-bottom: 10px;
    }
    
    .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: #f2f2f2;
    }
    
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .policy-section {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 25px;
    }
    
    .highlight {
        background-color: #fffacd;
        padding: 15px;
        border-radius: 5px;
        margin: 20px 0;
        border-left: 4px solid #f1c40f;
    }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.contact-section {
    padding: 100px 0;
    background-color: hsl(287, 30%, 18%);
    color: white;
  }
  
  .contact-heading {
    color: hsl(287, 30%, 58%);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .contact-subheading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .contact-info-icon {
    color: hsl(287, 30%, 58%);
    font-size: 22px;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .contact-info-content h5 {
    font-size: 18px;
    color: hsl(287, 30%, 58%);
    margin-bottom: 5px;
  }
  
  .contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: hsl(287, 30%, 58%);
    color: white;
    box-shadow: none;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .contact-btn {
    background-color: hsl(287, 30%, 58%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 0;
  }
  
  .contact-btn:hover {
    background-color: hsl(287, 30%, 33%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .contact-box {
    background-color: hsl(287, 30%, 15%);
    padding: 30px;
    border-left: 4px solid hsl(287, 30%, 58%);
    margin-bottom: 30px;
  }
  
  textarea.form-control {
    min-height: 150px;
  }
  
  @media (max-width: 767px) {
    .contact-info {
      margin-bottom: 50px;
    }
  }

.about-section {
        padding: 5rem 0;
        background-color: #f8f5fa;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(287, 30%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        color: hsl(287, 30%, 18%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .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-highlight {
        color: hsl(287, 30%, 58%);
        font-weight: 600;
    }
    
    .about-divider {
        height: 3px;
        width: 70px;
        background-color: hsl(287, 30%, 58%);
        margin: 2rem auto;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-image-container {
            margin-bottom: 2rem;
        }
    }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.services-section {
        padding: 5rem 0;
        background-color: #f9f4fa;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(174, 121, 174, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(174, 121, 174, 0.2);
        border-color: hsl(287, 30%, 58%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(287, 30%, 33%);
    }
    
    .service-title {
        color: hsl(287, 30%, 18%);
        font-weight: 700;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(287, 30%, 58%);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #888;
        font-style: italic;
    }
    
    .section-title {
        color: hsl(287, 30%, 33%);
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(287, 30%, 58%);
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(287, 30%, 18%), hsl(287, 30%, 33%));
        padding: 5rem 0;
        color: white;
        text-align: center;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='hsl(287, 30%, 28%)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-heading {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .newsletter-subheading {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        max-width: 550px;
        margin: 0 auto;
        position: relative;
    }
    
    .form-control {
        height: 60px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 1rem;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .form-control:focus {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
        border: none;
    }
    
    .subscribe-btn {
        position: absolute;
        right: 5px;
        top: 5px;
        height: 50px;
        border-radius: 25px;
        background-color: hsl(287, 30%, 58%);
        color: white;
        font-weight: 600;
        padding: 0 30px;
        transition: all 0.3s ease;
        border: none;
    }
    
    .subscribe-btn:hover {
        background-color: hsl(287, 40%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .benefits-list {
        margin-top: 3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .benefit-item {
        flex: 1 1 250px;
        max-width: 300px;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: hsl(287, 30%, 58%);
    }
    
    .benefit-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        opacity: 0.85;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .newsletter-heading {
            font-size: 2.5rem;
        }
        
        .newsletter-subheading {
            font-size: 1.1rem;
        }
        
        .subscribe-btn {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 576px) {
        .newsletter-heading {
            font-size: 2rem;
        }
        
        .form-control {
            height: 55px;
        }
        
        .subscribe-btn {
            height: 45px;
            font-size: 0.9rem;
        }
        
        .benefit-item {
            flex: 0 0 100%;
        }
    }

.testimonials-section {
    background-color: hsl(287, 30%, 33%);
    color: white;
    padding: 5rem 0;
  }
  
  .testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .testimonials-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(287, 30%, 58%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .testimonial-card {
    background-color: hsl(287, 30%, 18%);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: hsl(287, 30%, 58%);
  }
  
  .testimonial-location {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .testimonial-rating {
    color: gold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .terms-container h1 {
        color: #2c3e50;
        border-bottom: 2px solid #e74c3c;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .terms-container h2 {
        color: #2c3e50;
        margin-top: 30px;
        border-left: 4px solid #e74c3c;
        padding-left: 10px;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .terms-container li {
        margin-bottom: 10px;
    }
    .terms-container .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 40px;
        text-align: right;
    }
    .terms-container .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-left: 3px solid #e74c3c;
        margin: 20px 0;
    }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.faq-section {
    padding: 80px 0;
    background-color: #f9f6fa;
  }
  
  .faq-title {
    font-weight: 700;
    margin-bottom: 50px;
    color: hsl(287, 30%, 33%);
    position: relative;
  }
  
  .faq-title:after {
    content: "";
    width: 70px;
    height: 3px;
    background-color: hsl(287, 30%, 58%);
    position: absolute;
    bottom: -15px;
    left: 0;
  }
  
  .faq-card {
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
  }
  
  .faq-card .card-header {
    border: none;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px !important;
    padding: 0;
  }
  
  .faq-card .btn-link {
    color: hsl(287, 30%, 33%);
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .faq-card .btn-link:hover {
    color: hsl(287, 30%, 58%);
  }
  
  .faq-card .btn-link::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  
  .faq-card .btn-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-card .card-body {
    background-color: white;
    border-radius: 0 0 8px 8px;
    padding: 20px 25px;
    color: #666;
    line-height: 1.7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  @media (max-width: 767px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .faq-title {
      margin-bottom: 30px;
    }
  }

.about-section {
        padding: 5rem 0;
        background-color: #f8f5fa;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(287, 30%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        color: hsl(287, 30%, 18%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .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-highlight {
        color: hsl(287, 30%, 58%);
        font-weight: 600;
    }
    
    .about-divider {
        height: 3px;
        width: 70px;
        background-color: hsl(287, 30%, 58%);
        margin: 2rem auto;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-image-container {
            margin-bottom: 2rem;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(287, 30%, 18%), hsl(287, 30%, 33%));
        padding: 5rem 0;
        color: white;
        text-align: center;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='hsl(287, 30%, 28%)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-heading {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .newsletter-subheading {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        max-width: 550px;
        margin: 0 auto;
        position: relative;
    }
    
    .form-control {
        height: 60px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 1rem;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .form-control:focus {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
        border: none;
    }
    
    .subscribe-btn {
        position: absolute;
        right: 5px;
        top: 5px;
        height: 50px;
        border-radius: 25px;
        background-color: hsl(287, 30%, 58%);
        color: white;
        font-weight: 600;
        padding: 0 30px;
        transition: all 0.3s ease;
        border: none;
    }
    
    .subscribe-btn:hover {
        background-color: hsl(287, 40%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .benefits-list {
        margin-top: 3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .benefit-item {
        flex: 1 1 250px;
        max-width: 300px;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: hsl(287, 30%, 58%);
    }
    
    .benefit-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        opacity: 0.85;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .newsletter-heading {
            font-size: 2.5rem;
        }
        
        .newsletter-subheading {
            font-size: 1.1rem;
        }
        
        .subscribe-btn {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 576px) {
        .newsletter-heading {
            font-size: 2rem;
        }
        
        .form-control {
            height: 55px;
        }
        
        .subscribe-btn {
            height: 45px;
            font-size: 0.9rem;
        }
        
        .benefit-item {
            flex: 0 0 100%;
        }
    }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

:root {
            --primary: hsl(287, 30%, 33%);
            --secondary: hsl(287, 30%, 18%);
            --accent: hsl(287, 30%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--secondary);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .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");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

:root {
    --primary: hsl(287, 30%, 33%);
    --secondary: hsl(287, 30%, 18%);
    --accent: hsl(287, 30%, 58%);
  }
  
  .hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 600;
  }
  
  .hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .hero-features {
    margin-bottom: 2rem;
  }
  
  .hero-features li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }
  
  .hero-features i {
    color: var(--accent);
    margin-right: 0.5rem;
  }
  
  .hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
  }
  
  .cta-primary {
    background-color: var(--accent);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .cta-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .cta-secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-left: 15px;
  }
  
  .cta-secondary:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
    
    .cta-secondary {
      margin-left: 0;
      margin-top: 15px;
    }
  }

.statistics-section {
        background-color: hsl(287, 30%, 18%);
        color: white;
        padding: 5rem 0;
    }
    
    .statistics-section h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
        text-align: center;
        color: hsl(287, 30%, 58%);
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .statistics-section .counter-box {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .statistics-section .counter-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .statistics-section .counter-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(287, 30%, 58%);
    }
    
    .statistics-section .counter-number {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        font-family: 'Montserrat', sans-serif;
    }
    
    .statistics-section .counter-title {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
        color: hsl(287, 30%, 58%);
    }
    
    .statistics-section .counter-description {
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }
    
    @media (max-width: 767px) {
        .statistics-section .counter-number {
            font-size: 2.5rem;
        }
        
        .statistics-section .counter-title {
            font-size: 1.1rem;
        }
    }

.testimonials-section {
    background-color: hsl(287, 30%, 33%);
    color: white;
    padding: 5rem 0;
  }
  
  .testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .testimonials-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(287, 30%, 58%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .testimonial-card {
    background-color: hsl(287, 30%, 18%);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: hsl(287, 30%, 58%);
  }
  
  .testimonial-location {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .testimonial-rating {
    color: gold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

.services-section {
        padding: 5rem 0;
        background-color: #f9f4fa;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(174, 121, 174, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(174, 121, 174, 0.2);
        border-color: hsl(287, 30%, 58%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: hsl(287, 30%, 33%);
    }
    
    .service-title {
        color: hsl(287, 30%, 18%);
        font-weight: 700;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(287, 30%, 58%);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #888;
        font-style: italic;
    }
    
    .section-title {
        color: hsl(287, 30%, 33%);
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(287, 30%, 58%);
    }

.about-section {
        padding: 5rem 0;
        background-color: #f8f5fa;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(287, 30%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        color: hsl(287, 30%, 18%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .about-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .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-highlight {
        color: hsl(287, 30%, 58%);
        font-weight: 600;
    }
    
    .about-divider {
        height: 3px;
        width: 70px;
        background-color: hsl(287, 30%, 58%);
        margin: 2rem auto;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 0;
        }
        
        .about-image-container {
            margin-bottom: 2rem;
        }
    }

.contact-section {
    padding: 100px 0;
    background-color: hsl(287, 30%, 18%);
    color: white;
  }
  
  .contact-heading {
    color: hsl(287, 30%, 58%);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .contact-subheading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .contact-info-icon {
    color: hsl(287, 30%, 58%);
    font-size: 22px;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .contact-info-content h5 {
    font-size: 18px;
    color: hsl(287, 30%, 58%);
    margin-bottom: 5px;
  }
  
  .contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: hsl(287, 30%, 58%);
    color: white;
    box-shadow: none;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .contact-btn {
    background-color: hsl(287, 30%, 58%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 0;
  }
  
  .contact-btn:hover {
    background-color: hsl(287, 30%, 33%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .contact-box {
    background-color: hsl(287, 30%, 15%);
    padding: 30px;
    border-left: 4px solid hsl(287, 30%, 58%);
    margin-bottom: 30px;
  }
  
  textarea.form-control {
    min-height: 150px;
  }
  
  @media (max-width: 767px) {
    .contact-info {
      margin-bottom: 50px;
    }
  }

.newsletter-section {
        background: linear-gradient(135deg, hsl(287, 30%, 18%), hsl(287, 30%, 33%));
        padding: 5rem 0;
        color: white;
        text-align: center;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='hsl(287, 30%, 28%)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-heading {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .newsletter-subheading {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        max-width: 550px;
        margin: 0 auto;
        position: relative;
    }
    
    .form-control {
        height: 60px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 1rem;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .form-control:focus {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
        border: none;
    }
    
    .subscribe-btn {
        position: absolute;
        right: 5px;
        top: 5px;
        height: 50px;
        border-radius: 25px;
        background-color: hsl(287, 30%, 58%);
        color: white;
        font-weight: 600;
        padding: 0 30px;
        transition: all 0.3s ease;
        border: none;
    }
    
    .subscribe-btn:hover {
        background-color: hsl(287, 40%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .benefits-list {
        margin-top: 3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .benefit-item {
        flex: 1 1 250px;
        max-width: 300px;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: hsl(287, 30%, 58%);
    }
    
    .benefit-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        opacity: 0.85;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .newsletter-heading {
            font-size: 2.5rem;
        }
        
        .newsletter-subheading {
            font-size: 1.1rem;
        }
        
        .subscribe-btn {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 576px) {
        .newsletter-heading {
            font-size: 2rem;
        }
        
        .form-control {
            height: 55px;
        }
        
        .subscribe-btn {
            height: 45px;
            font-size: 0.9rem;
        }
        
        .benefit-item {
            flex: 0 0 100%;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9f6fa;
    }
    
    .section-title {
        color: hsl(287, 30%, 33%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(287, 30%, 58%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        background-color: white;
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(287, 30%, 58%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(287, 30%, 58%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantage-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: hsl(287, 30%, 33%);
        margin-bottom: 15px;
    }
    
    .advantage-description {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantage-card {
            margin-bottom: 30px;
        }
    }

.faq-section {
    padding: 80px 0;
    background-color: #f9f6fa;
  }
  
  .faq-title {
    font-weight: 700;
    margin-bottom: 50px;
    color: hsl(287, 30%, 33%);
    position: relative;
  }
  
  .faq-title:after {
    content: "";
    width: 70px;
    height: 3px;
    background-color: hsl(287, 30%, 58%);
    position: absolute;
    bottom: -15px;
    left: 0;
  }
  
  .faq-card {
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
  }
  
  .faq-card .card-header {
    border: none;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px !important;
    padding: 0;
  }
  
  .faq-card .btn-link {
    color: hsl(287, 30%, 33%);
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .faq-card .btn-link:hover {
    color: hsl(287, 30%, 58%);
  }
  
  .faq-card .btn-link::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  
  .faq-card .btn-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-card .card-body {
    background-color: white;
    border-radius: 0 0 8px 8px;
    padding: 20px 25px;
    color: #666;
    line-height: 1.7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  @media (max-width: 767px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .faq-title {
      margin-bottom: 30px;
    }
  }

:root {
        --primary-color: hsl(287, 30%, 33%);
        --secondary-color: hsl(287, 30%, 18%);
        --accent-color: hsl(287, 30%, 58%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    footer h3 {
        color: var(--accent-color);
        font-weight: 700;
        margin-bottom: 25px;
    }

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

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

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

    footer .footer-links li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-links li:last-child {
        border-bottom: none;
    }

    footer .copyright {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 0.85rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .cookie-notice.show {
        display: block;
        animation: slideUp 0.5s ease-out;
    }

    .cookie-btn {
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

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

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

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

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }