:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --accent: #ff4d94;
    --dark: #1a1c2c;
    --light: #f8f9ff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.hdm a{
    color: black !important;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 600;
    margin: 0 0.8rem;
    color: var(--dark);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

section {
    padding: 6rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 10px;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cookies-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookies-notice.show {
    transform: translateY(0);
}

.cookies-content {
    flex: 1;
    padding-right: 1rem;
}

.cookies-close {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookies-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.offcanvas {
    background: var(--dark);
    color: white;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body .nav-link {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 992px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .cookies-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .cookies-content {
        padding-right: 0;
        margin-bottom: 1rem;
    }
}