:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: hsl(208, 62%, 34%);
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(208, 62%, 59%);
    }
    
    .about-text {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: hsl(208, 62%, 34%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }
    
    .timeline-container {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background-color: white;
        border: 4px solid hsl(208, 62%, 59%);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    
    .left {
        left: 0;
    }
    
    .right {
        left: 50%;
    }
    
    .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }
    
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .right::after {
        left: -10px;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-content h3 {
        color: hsl(208, 62%, 34%);
        margin-top: 0;
    }
    
    .values-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(208, 62%, 59%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .values-card h4 {
        color: hsl(208, 62%, 34%);
        margin-bottom: 15px;
    }
    
    .values-card p {
        color: #555;
        margin-bottom: 0;
    }
    
    @media screen and (max-width: 600px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-container {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        
        .left::after, .right::after {
            left: 15px;
        }
        
        .right {
            left: 0%;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section h2 {
        color: hsl(208, 62%, 34%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(208, 62%, 59%);
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 30px;
        margin-bottom: 30px;
        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(208, 62%, 59%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(208, 62%, 34%);
        margin-bottom: 20px;
    }
    
    .advantage-title {
        color: hsl(208, 62%, 19%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .advantage-description {
        color: #6c757d;
        line-height: 1.6;
    }
    
    .zigzag-right {
        display: flex;
        flex-direction: row-reverse;
    }
    
    @media (max-width: 767px) {
        .zigzag-right {
            flex-direction: row;
        }
    }

.statistics-section {
    background-color: hsl(208, 62%, 34%);
    color: white;
    padding: 80px 0;
    position: relative;
  }
  
  .statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(208, 62%, 19%, 0.8), hsla(208, 62%, 34%, 0.4));
    z-index: 1;
  }
  
  .statistics-section .container {
    position: relative;
    z-index: 2;
  }
  
  .statistics-section h2 {
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
  }
  
  .statistics-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: hsl(208, 62%, 59%);
  }
  
  .stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 15px;
    transition: transform 0.3s ease;
    border-radius: 8px;
    background-color: hsla(208, 62%, 19%, 0.3);
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    background-color: hsla(208, 62%, 19%, 0.6);
  }
  
  .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(208, 62%, 59%);
  }
  
  .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
  }
  
  .stat-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .statistics-section {
      padding: 60px 0;
    }
    
    .stat-number {
      font-size: 2.8rem;
    }
    
    .stat-item {
      padding: 20px 10px;
    }
  }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.privacy-policy-container {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .privacy-policy-container h1 {
        color: #2c3e50;
        font-size: 32px;
        margin-bottom: 25px;
        border-bottom: 2px solid #e67e22;
        padding-bottom: 10px;
    }
    
    .privacy-policy-container h2 {
        color: #3498db;
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .privacy-policy-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-policy-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .privacy-policy-container li {
        margin-bottom: 8px;
    }
    
    .privacy-policy-container .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #e67e22;
        margin-bottom: 20px;
    }
    
    .privacy-policy-container .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 25px;
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.cookies-policy {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Open Sans', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #0066cc;
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5rem;
        border-bottom: 2px solid #f1f1f1;
        padding-bottom: 15px;
    }
    .cookies-policy h2 {
        color: #0066cc;
        margin-top: 30px;
        font-size: 1.8rem;
        border-left: 4px solid #0066cc;
        padding-left: 15px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 25px;
        margin-bottom: 20px;
    }
    .cookies-policy li {
        margin-bottom: 10px;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 5px;
        border-left: 4px solid #0066cc;
        margin: 20px 0;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.contact-section {
        padding: 80px 0;
        background-color: hsl(208, 62%, 95%);
    }
    
    .contact-heading {
        color: hsl(208, 62%, 19%);
        font-weight: 700;
        margin-bottom: 40px;
    }
    
    .contact-subheading {
        color: hsl(208, 62%, 34%);
        margin-bottom: 25px;
    }
    
    .contact-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 30px;
        height: 100%;
    }
    
    .contact-form label {
        color: hsl(208, 62%, 34%);
        font-weight: 500;
        margin-bottom: 8px;
    }
    
    .contact-form .form-control {
        border: 1px solid hsl(208, 30%, 85%);
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .contact-form .form-control:focus {
        border-color: hsl(208, 62%, 59%);
        box-shadow: 0 0 0 0.2rem rgba(73, 131, 189, 0.25);
    }
    
    .contact-submit-btn {
        background-color: hsl(208, 62%, 34%);
        color: white;
        font-weight: 600;
        padding: 12px 30px;
        border: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 10px;
    }
    
    .contact-submit-btn:hover {
        background-color: hsl(208, 62%, 19%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info-item {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-info-icon {
        color: hsl(208, 62%, 59%);
        font-size: 20px;
        margin-right: 15px;
        margin-top: 3px;
    }
    
    .contact-info-text {
        color: hsl(208, 20%, 40%);
    }
    
    .contact-info-text strong {
        display: block;
        color: hsl(208, 62%, 34%);
        margin-bottom: 5px;
    }
    
    .map-container {
        height: 250px;
        background-color: hsl(208, 30%, 95%);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .consultation-process {
        background-color: hsl(208, 62%, 34%);
        color: white;
        padding: 25px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .consultation-process h4 {
        font-weight: 600;
        margin-bottom: 15px;
        color: white;
    }
    
    .consultation-process p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .contact-card {
            margin-bottom: 30px;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: hsl(208, 62%, 34%);
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(208, 62%, 59%);
    }
    
    .about-text {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: hsl(208, 62%, 34%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }
    
    .timeline-container {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background-color: white;
        border: 4px solid hsl(208, 62%, 59%);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    
    .left {
        left: 0;
    }
    
    .right {
        left: 50%;
    }
    
    .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }
    
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .right::after {
        left: -10px;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-content h3 {
        color: hsl(208, 62%, 34%);
        margin-top: 0;
    }
    
    .values-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(208, 62%, 59%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .values-card h4 {
        color: hsl(208, 62%, 34%);
        margin-bottom: 15px;
    }
    
    .values-card p {
        color: #555;
        margin-bottom: 0;
    }
    
    @media screen and (max-width: 600px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-container {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        
        .left::after, .right::after {
            left: 15px;
        }
        
        .right {
            left: 0%;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.services-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
  }
  
  .services-heading {
    text-align: center;
    margin-bottom: 3rem;
    color: hsl(208, 62%, 34%);
  }
  
  .services-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .services-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: hsl(208, 62%, 19%);
  }
  
  .service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(208, 62%, 59%);
  }
  
  .service-icon {
    background-color: hsl(208, 62%, 34%, 0.1);
    color: hsl(208, 62%, 34%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background-color: hsl(208, 62%, 34%);
    color: white;
  }
  
  .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(208, 62%, 19%);
  }
  
  .service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(208, 62%, 34%);
    display: block;
    margin-bottom: 1rem;
  }
  
  .service-terms {
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 1rem;
  }

.newsletter-section {
        background: linear-gradient(135deg, hsl(208, 62%, 34%) 0%, hsl(208, 62%, 19%) 100%);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
    }
    
    .newsletter-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefits-list {
        margin-bottom: 25px;
    }
    
    .benefits-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }
    
    .benefits-list li:before {
        content: "✓";
        color: hsl(208, 62%, 59%);
        margin-right: 10px;
        font-weight: bold;
    }
    
    .newsletter-input {
        height: 55px;
        border-radius: 8px;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0 20px;
    }
    
    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .newsletter-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: hsl(208, 62%, 59%);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .subscribe-btn {
        height: 55px;
        background: hsl(208, 62%, 59%);
        border: none;
        color: white;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border-radius: 8px;
        padding: 0 30px;
    }
    
    .subscribe-btn:hover {
        background: hsl(208, 72%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .privacy-note {
        font-size: 0.8rem;
        opacity: 0.7;
        margin-top: 15px;
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 25px;
        }
        
        .input-group {
            flex-direction: column;
        }
        
        .newsletter-input {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .subscribe-btn {
            width: 100%;
        }
    }

.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .testimonials-title {
    color: hsl(208, 62%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .testimonials-subtitle {
    color: hsl(208, 62%, 19%);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
  }
  
  .testimonial-text:before {
    content: """;
    font-size: 60px;
    color: hsl(208, 62%, 59%, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: Georgia, serif;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(208, 62%, 34%);
    margin-bottom: 5px;
  }
  
  .testimonial-location {
    color: hsl(208, 62%, 59%);
    font-size: 0.9rem;
  }
  
  .testimonial-rating {
    color: #ffc107;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .testimonials {
      padding: 60px 0;
    }
    
    .testimonial-card {
      margin-bottom: 30px;
    }
  }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .terms-header {
        border-bottom: 2px solid #0077b6;
        padding-bottom: 10px;
        margin-bottom: 30px;
        color: #0077b6;
    }
    
    .terms-section {
        margin-bottom: 25px;
    }
    
    .terms-section h2 {
        color: #0077b6;
        margin-bottom: 15px;
        font-size: 1.4em;
    }
    
    .terms-section p, .terms-section li {
        margin-bottom: 10px;
        text-align: justify;
    }
    
    .terms-section ul {
        padding-left: 20px;
    }
    
    .terms-date {
        font-style: italic;
        margin-top: 30px;
        text-align: right;
        color: #666;
    }
    
    .important {
        font-weight: bold;
        color: #d62828;
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-title {
    color: hsl(208, 62%, 34%);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.faq-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: hsl(208, 62%, 59%);
    margin-top: 15px;
}

.faq-subtitle {
    color: hsl(208, 62%, 19%);
    margin-bottom: 30px;
    font-weight: 300;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(208, 228, 247, 0.2);
    color: hsl(208, 62%, 34%);
    font-weight: 600;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(208, 228, 247, 0.5);
}

.accordion-button::after {
    background-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-item {
    border: 1px solid rgba(208, 228, 247, 0.5);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-body {
    color: #555;
    line-height: 1.7;
    padding: 20px;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-column {
        margin-top: 20px;
    }
}

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: hsl(208, 62%, 34%);
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(208, 62%, 59%);
    }
    
    .about-text {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: hsl(208, 62%, 34%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }
    
    .timeline-container {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background-color: white;
        border: 4px solid hsl(208, 62%, 59%);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    
    .left {
        left: 0;
    }
    
    .right {
        left: 50%;
    }
    
    .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }
    
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .right::after {
        left: -10px;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-content h3 {
        color: hsl(208, 62%, 34%);
        margin-top: 0;
    }
    
    .values-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(208, 62%, 59%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .values-card h4 {
        color: hsl(208, 62%, 34%);
        margin-bottom: 15px;
    }
    
    .values-card p {
        color: #555;
        margin-bottom: 0;
    }
    
    @media screen and (max-width: 600px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-container {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        
        .left::after, .right::after {
            left: 15px;
        }
        
        .right {
            left: 0%;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(208, 62%, 34%) 0%, hsl(208, 62%, 19%) 100%);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
    }
    
    .newsletter-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefits-list {
        margin-bottom: 25px;
    }
    
    .benefits-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }
    
    .benefits-list li:before {
        content: "✓";
        color: hsl(208, 62%, 59%);
        margin-right: 10px;
        font-weight: bold;
    }
    
    .newsletter-input {
        height: 55px;
        border-radius: 8px;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0 20px;
    }
    
    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .newsletter-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: hsl(208, 62%, 59%);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .subscribe-btn {
        height: 55px;
        background: hsl(208, 62%, 59%);
        border: none;
        color: white;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border-radius: 8px;
        padding: 0 30px;
    }
    
    .subscribe-btn:hover {
        background: hsl(208, 72%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .privacy-note {
        font-size: 0.8rem;
        opacity: 0.7;
        margin-top: 15px;
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 25px;
        }
        
        .input-group {
            flex-direction: column;
        }
        
        .newsletter-input {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .subscribe-btn {
            width: 100%;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

:root {
            --primary: hsl(208, 62%, 34%);
            --secondary: hsl(208, 62%, 19%);
            --accent: hsl(208, 62%, 59%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-toggler {
            border-color: white;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.5rem 0;
            }
        }

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: hsl(208, 62%, 19%);
    color: #fff;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
  }
  
  .hero-image-container {
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .hero-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
  }
  
  .hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: hsl(208, 62%, 59%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-item {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    width: calc(50% - 1.5rem);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .feature-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
  
  .feature-icon {
    color: hsl(208, 62%, 59%);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }
  
  .feature-text {
    flex: 1;
  }
  
  .cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn-primary {
    background-color: hsl(208, 62%, 34%);
    border-color: hsl(208, 62%, 34%);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: hsl(208, 62%, 59%);
    border-color: hsl(208, 62%, 59%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn-outline-light {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
    
    .feature-item {
      width: 100%;
    }
  }

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-title {
    color: hsl(208, 62%, 34%);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.faq-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: hsl(208, 62%, 59%);
    margin-top: 15px;
}

.faq-subtitle {
    color: hsl(208, 62%, 19%);
    margin-bottom: 30px;
    font-weight: 300;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(208, 228, 247, 0.2);
    color: hsl(208, 62%, 34%);
    font-weight: 600;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(208, 228, 247, 0.5);
}

.accordion-button::after {
    background-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-item {
    border: 1px solid rgba(208, 228, 247, 0.5);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-body {
    color: #555;
    line-height: 1.7;
    padding: 20px;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-column {
        margin-top: 20px;
    }
}

.contact-section {
        padding: 80px 0;
        background-color: hsl(208, 62%, 95%);
    }
    
    .contact-heading {
        color: hsl(208, 62%, 19%);
        font-weight: 700;
        margin-bottom: 40px;
    }
    
    .contact-subheading {
        color: hsl(208, 62%, 34%);
        margin-bottom: 25px;
    }
    
    .contact-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 30px;
        height: 100%;
    }
    
    .contact-form label {
        color: hsl(208, 62%, 34%);
        font-weight: 500;
        margin-bottom: 8px;
    }
    
    .contact-form .form-control {
        border: 1px solid hsl(208, 30%, 85%);
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .contact-form .form-control:focus {
        border-color: hsl(208, 62%, 59%);
        box-shadow: 0 0 0 0.2rem rgba(73, 131, 189, 0.25);
    }
    
    .contact-submit-btn {
        background-color: hsl(208, 62%, 34%);
        color: white;
        font-weight: 600;
        padding: 12px 30px;
        border: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 10px;
    }
    
    .contact-submit-btn:hover {
        background-color: hsl(208, 62%, 19%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info-item {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-info-icon {
        color: hsl(208, 62%, 59%);
        font-size: 20px;
        margin-right: 15px;
        margin-top: 3px;
    }
    
    .contact-info-text {
        color: hsl(208, 20%, 40%);
    }
    
    .contact-info-text strong {
        display: block;
        color: hsl(208, 62%, 34%);
        margin-bottom: 5px;
    }
    
    .map-container {
        height: 250px;
        background-color: hsl(208, 30%, 95%);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .consultation-process {
        background-color: hsl(208, 62%, 34%);
        color: white;
        padding: 25px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .consultation-process h4 {
        font-weight: 600;
        margin-bottom: 15px;
        color: white;
    }
    
    .consultation-process p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .contact-card {
            margin-bottom: 30px;
        }
    }

.services-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
  }
  
  .services-heading {
    text-align: center;
    margin-bottom: 3rem;
    color: hsl(208, 62%, 34%);
  }
  
  .services-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .services-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: hsl(208, 62%, 19%);
  }
  
  .service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(208, 62%, 59%);
  }
  
  .service-icon {
    background-color: hsl(208, 62%, 34%, 0.1);
    color: hsl(208, 62%, 34%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background-color: hsl(208, 62%, 34%);
    color: white;
  }
  
  .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(208, 62%, 19%);
  }
  
  .service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(208, 62%, 34%);
    display: block;
    margin-bottom: 1rem;
  }
  
  .service-terms {
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 1rem;
  }

.statistics-section {
    background-color: hsl(208, 62%, 34%);
    color: white;
    padding: 80px 0;
    position: relative;
  }
  
  .statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(208, 62%, 19%, 0.8), hsla(208, 62%, 34%, 0.4));
    z-index: 1;
  }
  
  .statistics-section .container {
    position: relative;
    z-index: 2;
  }
  
  .statistics-section h2 {
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
  }
  
  .statistics-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: hsl(208, 62%, 59%);
  }
  
  .stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 15px;
    transition: transform 0.3s ease;
    border-radius: 8px;
    background-color: hsla(208, 62%, 19%, 0.3);
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    background-color: hsla(208, 62%, 19%, 0.6);
  }
  
  .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(208, 62%, 59%);
  }
  
  .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
  }
  
  .stat-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .statistics-section {
      padding: 60px 0;
    }
    
    .stat-number {
      font-size: 2.8rem;
    }
    
    .stat-item {
      padding: 20px 10px;
    }
  }

.newsletter-section {
        background: linear-gradient(135deg, hsl(208, 62%, 34%) 0%, hsl(208, 62%, 19%) 100%);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
    }
    
    .newsletter-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefits-list {
        margin-bottom: 25px;
    }
    
    .benefits-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }
    
    .benefits-list li:before {
        content: "✓";
        color: hsl(208, 62%, 59%);
        margin-right: 10px;
        font-weight: bold;
    }
    
    .newsletter-input {
        height: 55px;
        border-radius: 8px;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0 20px;
    }
    
    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .newsletter-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: hsl(208, 62%, 59%);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .subscribe-btn {
        height: 55px;
        background: hsl(208, 62%, 59%);
        border: none;
        color: white;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border-radius: 8px;
        padding: 0 30px;
    }
    
    .subscribe-btn:hover {
        background: hsl(208, 72%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .privacy-note {
        font-size: 0.8rem;
        opacity: 0.7;
        margin-top: 15px;
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            padding: 25px;
        }
        
        .input-group {
            flex-direction: column;
        }
        
        .newsletter-input {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .subscribe-btn {
            width: 100%;
        }
    }

.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .testimonials-title {
    color: hsl(208, 62%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .testimonials-subtitle {
    color: hsl(208, 62%, 19%);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
  }
  
  .testimonial-text:before {
    content: """;
    font-size: 60px;
    color: hsl(208, 62%, 59%, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: Georgia, serif;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(208, 62%, 34%);
    margin-bottom: 5px;
  }
  
  .testimonial-location {
    color: hsl(208, 62%, 59%);
    font-size: 0.9rem;
  }
  
  .testimonial-rating {
    color: #ffc107;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .testimonials {
      padding: 60px 0;
    }
    
    .testimonial-card {
      margin-bottom: 30px;
    }
  }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section h2 {
        color: hsl(208, 62%, 34%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(208, 62%, 59%);
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 30px;
        margin-bottom: 30px;
        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(208, 62%, 59%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(208, 62%, 34%);
        margin-bottom: 20px;
    }
    
    .advantage-title {
        color: hsl(208, 62%, 19%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .advantage-description {
        color: #6c757d;
        line-height: 1.6;
    }
    
    .zigzag-right {
        display: flex;
        flex-direction: row-reverse;
    }
    
    @media (max-width: 767px) {
        .zigzag-right {
            flex-direction: row;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: hsl(208, 62%, 34%);
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(208, 62%, 59%);
    }
    
    .about-text {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: hsl(208, 62%, 34%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }
    
    .timeline-container {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background-color: white;
        border: 4px solid hsl(208, 62%, 59%);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    
    .left {
        left: 0;
    }
    
    .right {
        left: 50%;
    }
    
    .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }
    
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .right::after {
        left: -10px;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-content h3 {
        color: hsl(208, 62%, 34%);
        margin-top: 0;
    }
    
    .values-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(208, 62%, 59%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .values-card h4 {
        color: hsl(208, 62%, 34%);
        margin-bottom: 15px;
    }
    
    .values-card p {
        color: #555;
        margin-bottom: 0;
    }
    
    @media screen and (max-width: 600px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-container {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        
        .left::after, .right::after {
            left: 15px;
        }
        
        .right {
            left: 0%;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

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

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

.accept-btn:hover {
    background-color: var(--accent-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: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}