:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.about-section {
    padding: 5rem 0;
    background-color: #fff;
    color: hsl(259, 40%, 32%);
    font-family: 'Montserrat', sans-serif;
  }

  .about-section h2 {
    color: hsl(259, 40%, 32%);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
  }

  .about-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: hsl(259, 40%, 57%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
  }

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

  .about-image:hover {
    transform: translateY(-10px);
  }

  .mission-box {
    background-color: hsla(259, 40%, 32%, 0.05);
    border-left: 4px solid hsl(259, 40%, 57%);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
    margin: 2.5rem 0;
  }

  .mission-box h3 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 1rem;
  }

  .values-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .values-icon {
    background-color: hsl(259, 40%, 57%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .values-text {
    flex-grow: 1;
  }

  .values-text h4 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 0.5rem;
  }

  .accent-text {
    color: hsl(259, 40%, 57%);
    font-style: italic;
  }

  @media (max-width: 768px) {
    .about-image {
      margin-bottom: 2rem;
    }
  }

.advantages-section {
        padding: 5rem 0;
        background-color: #f9f8ff;
    }
    
    .advantages-heading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(259, 40%, 32%);
    }
    
    .advantages-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }
    
    .advantages-heading h2:after {
        content: "";
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantages-heading p {
        max-width: 800px;
        margin: 0 auto;
        color: hsl(259, 40%, 17%);
        font-size: 1.1rem;
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem 1.5rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(259, 40%, 57%);
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        background-color: hsla(259, 40%, 57%, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon i {
        font-size: 2rem;
        color: hsl(259, 40%, 57%);
    }
    
    .advantage-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: hsl(259, 40%, 32%);
    }
    
    .advantage-description {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 991px) {
        .advantage-card {
            margin-bottom: 20px;
        }
    }

.statistics-section {
        background-color: hsl(259, 40%, 32%);
        color: white;
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .statistics-section .counter-box {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        background-color: hsla(259, 40%, 17%, 0.6);
    }
    
    .statistics-section .counter-box:hover {
        transform: translateY(-10px);
        background-color: hsl(259, 40%, 17%);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .statistics-section .counter-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        color: hsl(259, 40%, 57%);
    }
    
    .statistics-section .counter-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }
    
    .statistics-section .counter-text {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5;
    }
    
    @media (max-width: 768px) {
        .statistics-section h2 {
            font-size: 2rem;
        }
        
        .statistics-section .counter-number {
            font-size: 2rem;
        }
        
        .statistics-section .counter-text {
            font-size: 1rem;
        }
    }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        padding: 2rem 0;
    }
    
    .policy-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    h1 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
        border-bottom: 2px solid #3498db;
        padding-bottom: 1rem;
    }
    
    .last-updated {
        text-align: center;
        color: #7f8c8d;
        margin-bottom: 2rem;
        font-style: italic;
    }
    
    h2 {
        color: #2980b9;
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #eaeaea;
    }
    
    h3 {
        color: #3498db;
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    p {
        margin-bottom: 1rem;
    }
    
    ul {
        margin-left: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    li {
        margin-bottom: 0.5rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    strong {
        color: #2c3e50;
    }
    
    @media (max-width: 768px) {
        .policy-container {
            padding: 1.5rem;
        }
        
        h1 {
            font-size: 2rem;
        }
        
        h2 {
            font-size: 1.5rem;
        }
        
        h3 {
            font-size: 1.2rem;
        }
    }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 25px;
        font-size: 2.2em;
    }
    .cookies-policy h2 {
        color: #2980b9;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.6em;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 30px;
    }
    .cookies-policy li {
        margin-bottom: 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: #f5f5f5;
    }
    .cookies-policy .highlight-box {
        background-color: #f8f9fa;
        border-left: 4px solid #3498db;
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }
    .cookies-policy .date {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 30px;
    }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.contact-section {
        padding: 6rem 0;
        background-color: hsl(259, 40%, 97%);
        position: relative;
    }
    
    .contact-section .container {
        position: relative;
        z-index: 1;
    }
    
    .contact-section h2 {
        color: hsl(259, 40%, 32%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-section h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
    }
    
    .contact-form {
        background-color: white;
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .form-control {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 0.8rem;
        width: 100%;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: hsl(259, 40%, 57%);
        box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.15);
        outline: none;
    }
    
    .submit-btn {
        background-color: hsl(259, 40%, 32%);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .submit-btn:hover {
        background-color: hsl(259, 40%, 57%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    }
    
    .contact-info {
        background-color: white;
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .hours-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #e0e0e0;
        padding: 0.7rem 0;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }
    
    .info-text {
        color: #555;
        line-height: 1.7;
    }
    
    .process-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .process-step {
        display: flex;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .step-number {
        background-color: hsl(259, 40%, 57%);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .step-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-bottom: 0.2rem;
    }
    
    .step-desc {
        color: #555;
        line-height: 1.6;
    }
    
    @media (max-width: 991.98px) {
        .contact-info {
            margin-top: 2rem;
        }
    }

.about-section {
    padding: 5rem 0;
    background-color: #fff;
    color: hsl(259, 40%, 32%);
    font-family: 'Montserrat', sans-serif;
  }

  .about-section h2 {
    color: hsl(259, 40%, 32%);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
  }

  .about-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: hsl(259, 40%, 57%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
  }

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

  .about-image:hover {
    transform: translateY(-10px);
  }

  .mission-box {
    background-color: hsla(259, 40%, 32%, 0.05);
    border-left: 4px solid hsl(259, 40%, 57%);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
    margin: 2.5rem 0;
  }

  .mission-box h3 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 1rem;
  }

  .values-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .values-icon {
    background-color: hsl(259, 40%, 57%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .values-text {
    flex-grow: 1;
  }

  .values-text h4 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 0.5rem;
  }

  .accent-text {
    color: hsl(259, 40%, 57%);
    font-style: italic;
  }

  @media (max-width: 768px) {
    .about-image {
      margin-bottom: 2rem;
    }
  }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.services-section {
        padding: 80px 0;
        background-color: #f9f8ff;
    }
    
    .services-section h2 {
        color: hsl(259, 40%, 32%);
        font-weight: 700;
        margin-bottom: 40px;
        position: relative;
    }
    
    .services-section h2:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 25px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        height: 100%;
        border-left: 4px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-left: 4px solid hsl(259, 40%, 57%);
    }
    
    .service-icon {
        background-color: hsl(259, 40%, 95%);
        width: 70px;
        height: 70px;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        flex-shrink: 0;
        color: hsl(259, 40%, 32%);
        font-size: 30px;
    }
    
    .service-content {
        flex-grow: 1;
    }
    
    .service-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    .service-description {
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(259, 40%, 57%);
        font-size: 18px;
    }
    
    .service-price .period {
        font-size: 14px;
        color: #888;
        font-weight: 400;
    }
    
    .service-terms {
        font-size: 13px;
        color: #999;
        margin-top: 10px;
        font-style: italic;
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(259, 40%, 32%) 0%, hsl(259, 40%, 17%) 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin: 3rem auto;
    max-width: 1200px;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-button {
    background-color: hsl(259, 40%, 57%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    background-color: hsl(259, 60%, 65%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
}

.benefit-item {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: hsl(259, 40%, 90%);
    font-weight: 600;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .newsletter-form {
        display: flex;
        align-items: center;
    }
    
    .newsletter-button {
        margin-top: 0;
        margin-left: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

.testimonials-section {
        padding: 80px 0;
        background: linear-gradient(135deg, hsl(259, 40%, 32%) 0%, hsl(259, 40%, 17%) 100%);
        color: #fff;
    }
    
    .testimonials-section h2 {
        text-align: center;
        margin-bottom: 50px;
        color: #fff;
        font-weight: 700;
        position: relative;
        font-size: 2.5rem;
    }
    
    .testimonials-section h2:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
        margin: 15px auto 0;
    }
    
    .testimonial-card {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        height: 100%;
        transition: all 0.3s ease;
        border-left: 3px solid hsl(259, 40%, 57%);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(259, 40%, 57%);
        font-size: 1.1rem;
    }
    
    .testimonial-location {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonial-quote {
        font-size: 2rem;
        color: hsl(259, 40%, 57%);
        opacity: 0.3;
        margin-bottom: 10px;
    }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.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: #1a365d;
        text-align: center;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    .terms-container h2 {
        color: #2c5282;
        margin-top: 30px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e2e8f0;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .date {
        font-style: italic;
        text-align: right;
        margin-top: 40px;
    }
    .terms-container .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #4299e1;
        margin-bottom: 20px;
    }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.faq-section {
        padding: 5rem 0;
        background-color: #f9f8ff;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-title {
        color: hsl(259, 40%, 32%);
        margin-bottom: 3rem;
        text-align: center;
        font-weight: 700;
    }
    
    .faq-subtitle {
        color: hsl(259, 40%, 57%);
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 400;
    }
    
    .accordion-item {
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 1rem;
        background-color: transparent;
    }
    
    .accordion-button {
        background-color: transparent;
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        padding: 1.25rem 0;
        box-shadow: none !important;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: transparent;
        color: hsl(259, 40%, 57%);
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,.125);
    }
    
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d4a8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .accordion-body {
        padding: 0.5rem 0 1.5rem 0;
        color: hsl(259, 40%, 17%);
        line-height: 1.7;
    }

.about-section {
    padding: 5rem 0;
    background-color: #fff;
    color: hsl(259, 40%, 32%);
    font-family: 'Montserrat', sans-serif;
  }

  .about-section h2 {
    color: hsl(259, 40%, 32%);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
  }

  .about-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: hsl(259, 40%, 57%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
  }

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

  .about-image:hover {
    transform: translateY(-10px);
  }

  .mission-box {
    background-color: hsla(259, 40%, 32%, 0.05);
    border-left: 4px solid hsl(259, 40%, 57%);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
    margin: 2.5rem 0;
  }

  .mission-box h3 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 1rem;
  }

  .values-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .values-icon {
    background-color: hsl(259, 40%, 57%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .values-text {
    flex-grow: 1;
  }

  .values-text h4 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 0.5rem;
  }

  .accent-text {
    color: hsl(259, 40%, 57%);
    font-style: italic;
  }

  @media (max-width: 768px) {
    .about-image {
      margin-bottom: 2rem;
    }
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(259, 40%, 32%) 0%, hsl(259, 40%, 17%) 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin: 3rem auto;
    max-width: 1200px;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-button {
    background-color: hsl(259, 40%, 57%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    background-color: hsl(259, 60%, 65%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
}

.benefit-item {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: hsl(259, 40%, 90%);
    font-weight: 600;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .newsletter-form {
        display: flex;
        align-items: center;
    }
    
    .newsletter-button {
        margin-top: 0;
        margin-left: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

:root {
            --primary: hsl(259, 40%, 32%);
            --secondary: hsl(259, 40%, 17%);
            --accent: hsl(259, 40%, 57%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white;
        }
        
        .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%;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

.hero-section {
    padding: 80px 0;
    background-color: hsl(259, 40%, 32%, 0.05);
    overflow: hidden;
  }
  
  .hero-content h1 {
    color: hsl(259, 40%, 32%);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-content h2 {
    color: hsl(259, 40%, 57%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .hero-benefits {
    margin-bottom: 2rem;
  }
  
  .hero-benefits li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.8rem;
  }
  
  .hero-benefits li i {
    color: hsl(259, 40%, 57%);
    position: absolute;
    left: 0;
    top: 0.25rem;
  }
  
  .hero-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-height: 100%;
    object-fit: cover;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  .btn-primary {
    background-color: hsl(259, 40%, 32%);
    border-color: hsl(259, 40%, 32%);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: hsl(259, 40%, 17%);
    border-color: hsl(259, 40%, 17%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline-secondary {
    color: hsl(259, 40%, 32%);
    border-color: hsl(259, 40%, 32%);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    margin-left: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn-outline-secondary:hover {
    background-color: hsl(259, 40%, 57%);
    border-color: hsl(259, 40%, 57%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 991.98px) {
    .hero-content {
      padding: 2rem 1rem;
      text-align: center;
    }
    
    .hero-benefits li {
      text-align: left;
    }
    
    .hero-image-container {
      margin-bottom: 2rem;
      order: -1;
    }
    
    .btn-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .btn-outline-secondary {
      margin-left: 0;
      margin-top: 1rem;
    }
  }

.services-section {
        padding: 80px 0;
        background-color: #f9f8ff;
    }
    
    .services-section h2 {
        color: hsl(259, 40%, 32%);
        font-weight: 700;
        margin-bottom: 40px;
        position: relative;
    }
    
    .services-section h2:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 25px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        height: 100%;
        border-left: 4px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-left: 4px solid hsl(259, 40%, 57%);
    }
    
    .service-icon {
        background-color: hsl(259, 40%, 95%);
        width: 70px;
        height: 70px;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        flex-shrink: 0;
        color: hsl(259, 40%, 32%);
        font-size: 30px;
    }
    
    .service-content {
        flex-grow: 1;
    }
    
    .service-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    .service-description {
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(259, 40%, 57%);
        font-size: 18px;
    }
    
    .service-price .period {
        font-size: 14px;
        color: #888;
        font-weight: 400;
    }
    
    .service-terms {
        font-size: 13px;
        color: #999;
        margin-top: 10px;
        font-style: italic;
    }

.testimonials-section {
        padding: 80px 0;
        background: linear-gradient(135deg, hsl(259, 40%, 32%) 0%, hsl(259, 40%, 17%) 100%);
        color: #fff;
    }
    
    .testimonials-section h2 {
        text-align: center;
        margin-bottom: 50px;
        color: #fff;
        font-weight: 700;
        position: relative;
        font-size: 2.5rem;
    }
    
    .testimonials-section h2:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
        margin: 15px auto 0;
    }
    
    .testimonial-card {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        height: 100%;
        transition: all 0.3s ease;
        border-left: 3px solid hsl(259, 40%, 57%);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(259, 40%, 57%);
        font-size: 1.1rem;
    }
    
    .testimonial-location {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonial-quote {
        font-size: 2rem;
        color: hsl(259, 40%, 57%);
        opacity: 0.3;
        margin-bottom: 10px;
    }

.statistics-section {
        background-color: hsl(259, 40%, 32%);
        color: white;
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .statistics-section .counter-box {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        background-color: hsla(259, 40%, 17%, 0.6);
    }
    
    .statistics-section .counter-box:hover {
        transform: translateY(-10px);
        background-color: hsl(259, 40%, 17%);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .statistics-section .counter-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        color: hsl(259, 40%, 57%);
    }
    
    .statistics-section .counter-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }
    
    .statistics-section .counter-text {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5;
    }
    
    @media (max-width: 768px) {
        .statistics-section h2 {
            font-size: 2rem;
        }
        
        .statistics-section .counter-number {
            font-size: 2rem;
        }
        
        .statistics-section .counter-text {
            font-size: 1rem;
        }
    }

.advantages-section {
        padding: 5rem 0;
        background-color: #f9f8ff;
    }
    
    .advantages-heading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(259, 40%, 32%);
    }
    
    .advantages-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }
    
    .advantages-heading h2:after {
        content: "";
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantages-heading p {
        max-width: 800px;
        margin: 0 auto;
        color: hsl(259, 40%, 17%);
        font-size: 1.1rem;
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem 1.5rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(259, 40%, 57%);
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        background-color: hsla(259, 40%, 57%, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon i {
        font-size: 2rem;
        color: hsl(259, 40%, 57%);
    }
    
    .advantage-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: hsl(259, 40%, 32%);
    }
    
    .advantage-description {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    @media (max-width: 991px) {
        .advantage-card {
            margin-bottom: 20px;
        }
    }

.faq-section {
        padding: 5rem 0;
        background-color: #f9f8ff;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-title {
        color: hsl(259, 40%, 32%);
        margin-bottom: 3rem;
        text-align: center;
        font-weight: 700;
    }
    
    .faq-subtitle {
        color: hsl(259, 40%, 57%);
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 400;
    }
    
    .accordion-item {
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 1rem;
        background-color: transparent;
    }
    
    .accordion-button {
        background-color: transparent;
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        padding: 1.25rem 0;
        box-shadow: none !important;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: transparent;
        color: hsl(259, 40%, 57%);
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,.125);
    }
    
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d4a8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .accordion-body {
        padding: 0.5rem 0 1.5rem 0;
        color: hsl(259, 40%, 17%);
        line-height: 1.7;
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(259, 40%, 32%) 0%, hsl(259, 40%, 17%) 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin: 3rem auto;
    max-width: 1200px;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-button {
    background-color: hsl(259, 40%, 57%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    background-color: hsl(259, 60%, 65%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
}

.benefit-item {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: hsl(259, 40%, 90%);
    font-weight: 600;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .newsletter-form {
        display: flex;
        align-items: center;
    }
    
    .newsletter-button {
        margin-top: 0;
        margin-left: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

.about-section {
    padding: 5rem 0;
    background-color: #fff;
    color: hsl(259, 40%, 32%);
    font-family: 'Montserrat', sans-serif;
  }

  .about-section h2 {
    color: hsl(259, 40%, 32%);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
  }

  .about-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: hsl(259, 40%, 57%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
  }

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

  .about-image:hover {
    transform: translateY(-10px);
  }

  .mission-box {
    background-color: hsla(259, 40%, 32%, 0.05);
    border-left: 4px solid hsl(259, 40%, 57%);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
    margin: 2.5rem 0;
  }

  .mission-box h3 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 1rem;
  }

  .values-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .values-icon {
    background-color: hsl(259, 40%, 57%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .values-text {
    flex-grow: 1;
  }

  .values-text h4 {
    color: hsl(259, 40%, 32%);
    margin-bottom: 0.5rem;
  }

  .accent-text {
    color: hsl(259, 40%, 57%);
    font-style: italic;
  }

  @media (max-width: 768px) {
    .about-image {
      margin-bottom: 2rem;
    }
  }

.contact-section {
        padding: 6rem 0;
        background-color: hsl(259, 40%, 97%);
        position: relative;
    }
    
    .contact-section .container {
        position: relative;
        z-index: 1;
    }
    
    .contact-section h2 {
        color: hsl(259, 40%, 32%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-section h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(259, 40%, 57%);
    }
    
    .contact-form {
        background-color: white;
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .form-control {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 0.8rem;
        width: 100%;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: hsl(259, 40%, 57%);
        box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.15);
        outline: none;
    }
    
    .submit-btn {
        background-color: hsl(259, 40%, 32%);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .submit-btn:hover {
        background-color: hsl(259, 40%, 57%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    }
    
    .contact-info {
        background-color: white;
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .hours-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #e0e0e0;
        padding: 0.7rem 0;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }
    
    .info-text {
        color: #555;
        line-height: 1.7;
    }
    
    .process-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .process-step {
        display: flex;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .step-number {
        background-color: hsl(259, 40%, 57%);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .step-title {
        color: hsl(259, 40%, 32%);
        font-weight: 600;
        margin-bottom: 0.2rem;
    }
    
    .step-desc {
        color: #555;
        line-height: 1.6;
    }
    
    @media (max-width: 991.98px) {
        .contact-info {
            margin-top: 2rem;
        }
    }

:root {
    --primary-color: hsl(259, 40%, 32%);
    --secondary-color: hsl(259, 40%, 17%);
    --accent-color: hsl(259, 40%, 57%);
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    font-size: 0.95rem;
    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);
    text-decoration: none;
}

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

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

.cookie-btn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}