:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .value-item {
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 46%);
        margin-bottom: 20px;
        background-color: white;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateX(5px);
        border-left-color: hsl(234, 66%, 71%);
    }
    
    .value-item h4 {
        color: hsl(234, 66%, 31%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .mission-box {
        background-color: hsl(234, 66%, 46%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .mission-box h3 {
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .mission-box h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .founder-quote {
        font-style: italic;
        font-size: 1.1rem;
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 71%);
        margin: 30px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-image {
            margin-bottom: 30px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .advantages-heading {
        margin-bottom: 60px;
        text-align: center;
    }
    
    .advantages-heading h2 {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
    }
    
    .advantages-heading h2:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
        margin: 15px auto 0;
    }
    
    .advantages-heading p {
        color: hsl(234, 66%, 31%);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(234, 66%, 46%);
    }
    
    .advantage-card .icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(234, 66%, 46%);
        background-color: rgba(110, 126, 208, 0.1);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .advantage-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: hsl(234, 66%, 31%);
        font-weight: 600;
    }
    
    .advantage-card p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .advantage-row {
        margin-bottom: 40px;
    }
    
    @media (max-width: 991px) {
        .advantage-card {
            margin-bottom: 30px;
        }
    }

.statistics-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .statistics-section h2 {
        color: hsl(234, 66%, 46%);
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .statistics-section .counter-box {
        text-align: center;
        margin-bottom: 40px;
        padding: 20px;
        transition: all 0.3s ease;
        border-radius: 10px;
    }
    
    .statistics-section .counter-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .statistics-section .counter-value {
        font-size: 3.5rem;
        font-weight: 700;
        color: hsl(234, 66%, 31%);
        margin-bottom: 5px;
        line-height: 1;
    }
    
    .statistics-section .counter-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: hsl(234, 66%, 46%);
        margin-bottom: 10px;
    }
    
    .statistics-section .counter-description {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
    }
    
    .statistics-section .counter-icon {
        font-size: 2.5rem;
        color: hsl(234, 66%, 71%);
        margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
        .statistics-section .counter-value {
            font-size: 2.8rem;
        }
        
        .statistics-section .counter-title {
            font-size: 1rem;
        }
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-header {
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .privacy-title {
        color: #2c3e50;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .privacy-subtitle {
        color: #7f8c8d;
        font-size: 1.1rem;
        font-weight: normal;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-section-title {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .privacy-section p {
        margin-bottom: 15px;
    }
    
    .privacy-list {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .privacy-list li {
        margin-bottom: 8px;
    }
    
    .privacy-updated {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 30px;
        font-size: 0.9rem;
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.cookies-policy {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #4a4a4a;
        font-size: 2.2em;
        margin-bottom: 0.8em;
        border-bottom: 2px solid #e8e8e8;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #5a5a5a;
        font-size: 1.6em;
        margin-top: 1.5em;
        margin-bottom: 0.7em;
    }
    .cookies-policy p {
        margin-bottom: 1em;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 2em;
        margin-bottom: 1.5em;
    }
    .cookies-policy li {
        margin-bottom: 0.5em;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #6c757d;
        margin-bottom: 1.5em;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin-bottom: 1.5em;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1em;
    }
    .cookies-policy th, .cookies-policy td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        color: #6c757d;
        margin-top: 2em;
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.contact-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        position: relative;
    }
    
    .contact-title {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .contact-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .form-control {
        border: 1px solid #e1e5ea;
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(234, 66%, 46%);
        box-shadow: 0 0 0 0.2rem hsla(234, 66%, 46%, 0.25);
    }
    
    .contact-btn {
        background-color: hsl(234, 66%, 46%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 100%;
    }
    
    .contact-btn:hover {
        background-color: hsl(234, 66%, 31%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-info-title {
        color: hsl(234, 66%, 46%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .working-hours {
        background-color: hsla(234, 66%, 71%, 0.1);
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid hsl(234, 66%, 46%);
    }
    
    .hours-list {
        list-style: none;
        padding-left: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        color: #555;
    }
    
    @media (max-width: 767px) {
        .contact-section {
            padding: 50px 0;
        }
        
        .contact-info {
            margin-top: 40px;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .value-item {
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 46%);
        margin-bottom: 20px;
        background-color: white;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateX(5px);
        border-left-color: hsl(234, 66%, 71%);
    }
    
    .value-item h4 {
        color: hsl(234, 66%, 31%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .mission-box {
        background-color: hsl(234, 66%, 46%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .mission-box h3 {
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .mission-box h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .founder-quote {
        font-style: italic;
        font-size: 1.1rem;
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 71%);
        margin: 30px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-image {
            margin-bottom: 30px;
        }
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.services-section {
    background-color: #f9f9ff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: hsl(234, 66%, 46%);
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: hsl(234, 66%, 71%);
    margin: 15px auto 0;
}

.section-subtitle {
    color: hsl(234, 66%, 31%);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.service-tabs .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.service-tabs .nav-link {
    border: none;
    padding: 15px 25px;
    color: #666;
    font-weight: 600;
    border-radius: 30px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.service-tabs .nav-link.active {
    background-color: hsl(234, 66%, 46%);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-tabs .nav-link:hover:not(.active) {
    background-color: hsl(234, 66%, 71%);
    color: white;
}

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

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

.service-icon {
    background: hsl(234, 66%, 46%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(234, 66%, 71%);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: hsl(234, 66%, 31%);
    margin-bottom: 15px;
}

.service-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(234, 66%, 46%);
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-top: auto;
}

.service-terms {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.tab-pane {
    animation: fadeIn 0.5s ease;
}

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

.newsletter-section {
        background: linear-gradient(135deg, hsl(234, 66%, 46%), hsl(234, 66%, 31%));
        color: white;
        padding: 4rem 0;
        border-radius: 0.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin: 3rem 0;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .newsletter-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .benefit-item i {
        color: hsl(234, 66%, 71%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-control {
        height: 3.5rem;
        border: none;
        background-color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        border-color: hsl(234, 66%, 71%);
    }
    
    .btn-subscribe {
        background-color: hsl(234, 66%, 71%);
        color: white;
        font-weight: 600;
        padding: 0.75rem 2rem;
        border: none;
        height: 3.5rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-subscribe:hover {
        background-color: white;
        color: hsl(234, 66%, 31%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .privacy-note {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 1.5rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
    }

.testimonials-section {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .testimonials-heading {
        color: hsl(234, 66%, 46%);
        margin-bottom: 50px;
        position: relative;
    }
    
    .testimonials-heading:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid hsl(234, 66%, 46%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.6;
        color: #555;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(234, 66%, 31%);
        margin-bottom: 5px;
    }
    
    .testimonial-location {
        font-size: 0.9rem;
        color: #777;
    }
    
    .quote-icon {
        color: hsl(234, 66%, 71%);
        font-size: 1.5rem;
        opacity: 0.5;
        margin-bottom: 15px;
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.terms-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.terms-container h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}
.terms-container h2 {
    color: #3498db;
    margin-top: 25px;
    font-size: 22px;
    border-left: 4px solid #3498db;
    padding-left: 10px;
}
.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 .highlight {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 3px solid #e74c3c;
    margin: 15px 0;
}
.terms-container .last-updated {
    text-align: right;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
}

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.faq-section {
    padding: 5rem 0;
    background-color: #f9f9ff;
  }
  
  .faq-title {
    color: hsl(234, 66%, 46%);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }
  
  .faq-subtitle {
    color: hsl(234, 66%, 31%);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .nav-tabs {
    border-bottom: 2px solid hsl(234, 66%, 71%);
    margin-bottom: 2rem;
    justify-content: center;
  }
  
  .nav-tabs .nav-link {
    color: hsl(234, 66%, 31%);
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .nav-tabs .nav-link:hover {
    color: hsl(234, 66%, 46%);
  }
  
  .nav-tabs .nav-link.active {
    color: hsl(234, 66%, 46%);
    background-color: transparent;
    border-bottom: 3px solid hsl(234, 66%, 46%);
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: hsl(234, 66%, 31%);
    background-color: white;
    transition: all 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) {
    color: white;
    background-color: hsl(234, 66%, 46%);
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
  }
  
  .accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
    color: #555;
    background-color: white;
  }
  
  .accordion-button::after {
    background-size: 16px;
    transition: all 0.3s ease;
  }
  
  .tab-content {
    padding-top: 1rem;
  }
  
  @media (max-width: 768px) {
    .nav-tabs .nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
    
    .accordion-button {
      padding: 1rem;
      font-size: 0.95rem;
    }
    
    .accordion-body {
      padding: 1rem;
      font-size: 0.9rem;
    }
  }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .value-item {
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 46%);
        margin-bottom: 20px;
        background-color: white;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateX(5px);
        border-left-color: hsl(234, 66%, 71%);
    }
    
    .value-item h4 {
        color: hsl(234, 66%, 31%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .mission-box {
        background-color: hsl(234, 66%, 46%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .mission-box h3 {
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .mission-box h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .founder-quote {
        font-style: italic;
        font-size: 1.1rem;
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 71%);
        margin: 30px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-image {
            margin-bottom: 30px;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(234, 66%, 46%), hsl(234, 66%, 31%));
        color: white;
        padding: 4rem 0;
        border-radius: 0.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin: 3rem 0;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .newsletter-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .benefit-item i {
        color: hsl(234, 66%, 71%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-control {
        height: 3.5rem;
        border: none;
        background-color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        border-color: hsl(234, 66%, 71%);
    }
    
    .btn-subscribe {
        background-color: hsl(234, 66%, 71%);
        color: white;
        font-weight: 600;
        padding: 0.75rem 2rem;
        border: none;
        height: 3.5rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-subscribe:hover {
        background-color: white;
        color: hsl(234, 66%, 31%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .privacy-note {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 1.5rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }

:root {
            --primary: hsl(234, 66%, 46%);
            --secondary: hsl(234, 66%, 31%);
            --accent: hsl(234, 66%, 71%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            margin-right: 10px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .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: none;
            padding: 0;
        }

        .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(71, 80, 184, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

:root {
  --primary: hsl(234, 66%, 46%);
  --secondary: hsl(234, 66%, 31%);
  --accent: hsl(234, 66%, 71%);
}

.hero-section {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9ff;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(var(--secondary), 0.2);
}

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

.hero-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.hero-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 0.5rem auto;
}

.hero-subtitle {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.hero-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  width: 100%;
}

.hero-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.hero-features i {
  color: var(--primary);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

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

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

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

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

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

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .value-item {
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 46%);
        margin-bottom: 20px;
        background-color: white;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateX(5px);
        border-left-color: hsl(234, 66%, 71%);
    }
    
    .value-item h4 {
        color: hsl(234, 66%, 31%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .mission-box {
        background-color: hsl(234, 66%, 46%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .mission-box h3 {
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .mission-box h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .founder-quote {
        font-style: italic;
        font-size: 1.1rem;
        padding: 20px;
        border-left: 3px solid hsl(234, 66%, 71%);
        margin: 30px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-image {
            margin-bottom: 30px;
        }
    }

.faq-section {
    padding: 5rem 0;
    background-color: #f9f9ff;
  }
  
  .faq-title {
    color: hsl(234, 66%, 46%);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }
  
  .faq-subtitle {
    color: hsl(234, 66%, 31%);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .nav-tabs {
    border-bottom: 2px solid hsl(234, 66%, 71%);
    margin-bottom: 2rem;
    justify-content: center;
  }
  
  .nav-tabs .nav-link {
    color: hsl(234, 66%, 31%);
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .nav-tabs .nav-link:hover {
    color: hsl(234, 66%, 46%);
  }
  
  .nav-tabs .nav-link.active {
    color: hsl(234, 66%, 46%);
    background-color: transparent;
    border-bottom: 3px solid hsl(234, 66%, 46%);
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: hsl(234, 66%, 31%);
    background-color: white;
    transition: all 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) {
    color: white;
    background-color: hsl(234, 66%, 46%);
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
  }
  
  .accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
    color: #555;
    background-color: white;
  }
  
  .accordion-button::after {
    background-size: 16px;
    transition: all 0.3s ease;
  }
  
  .tab-content {
    padding-top: 1rem;
  }
  
  @media (max-width: 768px) {
    .nav-tabs .nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
    
    .accordion-button {
      padding: 1rem;
      font-size: 0.95rem;
    }
    
    .accordion-body {
      padding: 1rem;
      font-size: 0.9rem;
    }
  }

.testimonials-section {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .testimonials-heading {
        color: hsl(234, 66%, 46%);
        margin-bottom: 50px;
        position: relative;
    }
    
    .testimonials-heading:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid hsl(234, 66%, 46%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.6;
        color: #555;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(234, 66%, 31%);
        margin-bottom: 5px;
    }
    
    .testimonial-location {
        font-size: 0.9rem;
        color: #777;
    }
    
    .quote-icon {
        color: hsl(234, 66%, 71%);
        font-size: 1.5rem;
        opacity: 0.5;
        margin-bottom: 15px;
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .advantages-heading {
        margin-bottom: 60px;
        text-align: center;
    }
    
    .advantages-heading h2 {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
    }
    
    .advantages-heading h2:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
        margin: 15px auto 0;
    }
    
    .advantages-heading p {
        color: hsl(234, 66%, 31%);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(234, 66%, 46%);
    }
    
    .advantage-card .icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(234, 66%, 46%);
        background-color: rgba(110, 126, 208, 0.1);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .advantage-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: hsl(234, 66%, 31%);
        font-weight: 600;
    }
    
    .advantage-card p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .advantage-row {
        margin-bottom: 40px;
    }
    
    @media (max-width: 991px) {
        .advantage-card {
            margin-bottom: 30px;
        }
    }

.statistics-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .statistics-section h2 {
        color: hsl(234, 66%, 46%);
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .statistics-section .counter-box {
        text-align: center;
        margin-bottom: 40px;
        padding: 20px;
        transition: all 0.3s ease;
        border-radius: 10px;
    }
    
    .statistics-section .counter-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .statistics-section .counter-value {
        font-size: 3.5rem;
        font-weight: 700;
        color: hsl(234, 66%, 31%);
        margin-bottom: 5px;
        line-height: 1;
    }
    
    .statistics-section .counter-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: hsl(234, 66%, 46%);
        margin-bottom: 10px;
    }
    
    .statistics-section .counter-description {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
    }
    
    .statistics-section .counter-icon {
        font-size: 2.5rem;
        color: hsl(234, 66%, 71%);
        margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
        .statistics-section .counter-value {
            font-size: 2.8rem;
        }
        
        .statistics-section .counter-title {
            font-size: 1rem;
        }
    }

.services-section {
    background-color: #f9f9ff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: hsl(234, 66%, 46%);
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: hsl(234, 66%, 71%);
    margin: 15px auto 0;
}

.section-subtitle {
    color: hsl(234, 66%, 31%);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.service-tabs .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.service-tabs .nav-link {
    border: none;
    padding: 15px 25px;
    color: #666;
    font-weight: 600;
    border-radius: 30px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.service-tabs .nav-link.active {
    background-color: hsl(234, 66%, 46%);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-tabs .nav-link:hover:not(.active) {
    background-color: hsl(234, 66%, 71%);
    color: white;
}

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

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

.service-icon {
    background: hsl(234, 66%, 46%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(234, 66%, 71%);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: hsl(234, 66%, 31%);
    margin-bottom: 15px;
}

.service-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(234, 66%, 46%);
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-top: auto;
}

.service-terms {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.tab-pane {
    animation: fadeIn 0.5s ease;
}

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

.newsletter-section {
        background: linear-gradient(135deg, hsl(234, 66%, 46%), hsl(234, 66%, 31%));
        color: white;
        padding: 4rem 0;
        border-radius: 0.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin: 3rem 0;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .newsletter-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .benefit-item i {
        color: hsl(234, 66%, 71%);
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-control {
        height: 3.5rem;
        border: none;
        background-color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        border-color: hsl(234, 66%, 71%);
    }
    
    .btn-subscribe {
        background-color: hsl(234, 66%, 71%);
        color: white;
        font-weight: 600;
        padding: 0.75rem 2rem;
        border: none;
        height: 3.5rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-subscribe:hover {
        background-color: white;
        color: hsl(234, 66%, 31%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .privacy-note {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 1.5rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
    }

.contact-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        position: relative;
    }
    
    .contact-title {
        color: hsl(234, 66%, 46%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .contact-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(234, 66%, 71%);
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .form-control {
        border: 1px solid #e1e5ea;
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(234, 66%, 46%);
        box-shadow: 0 0 0 0.2rem hsla(234, 66%, 46%, 0.25);
    }
    
    .contact-btn {
        background-color: hsl(234, 66%, 46%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 100%;
    }
    
    .contact-btn:hover {
        background-color: hsl(234, 66%, 31%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-info-title {
        color: hsl(234, 66%, 46%);
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .working-hours {
        background-color: hsla(234, 66%, 71%, 0.1);
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid hsl(234, 66%, 46%);
    }
    
    .hours-list {
        list-style: none;
        padding-left: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        color: #555;
    }
    
    @media (max-width: 767px) {
        .contact-section {
            padding: 50px 0;
        }
        
        .contact-info {
            margin-top: 40px;
        }
    }

:root {
    --primary-color: hsl(234, 66%, 46%);
    --secondary-color: hsl(234, 66%, 31%);
    --accent-color: hsl(234, 66%, 71%);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  
  footer p {
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none;
  }
  
  .cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
  }
  
  .accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
  }