a {
          text-decoration: none;
        }
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0d1f33 0%, #1a2f47 100%);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    z-index: 99999;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
     font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    margin-bottom: 10px;
    color: white;
 
}

.cookie-banner-text p {
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
        font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text a {
    color: #ffc107;
    text-decoration: none;
    transition: all 0.3s;
}

.cookie-banner-text a:hover {
    color: #ffeb3b;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: #c41e3a;
    color: white;
}

.cookie-btn-accept:hover {
    background: #a01730;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-reject:hover {
    background: white;
    color: #0d1f33;
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.cookie-btn-settings:hover {
    background: #ffc107;
    color: #0d1f33;
    transform: translateY(-2px);
}

/* COOKIE SETTINGS MODAL */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.cookie-settings-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.cookie-settings-close:hover {
    background: #f0f0f0;
    color: #c41e3a;
}

.cookie-settings-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0d1f33;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.cookie-category {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
   font-family: 'Montserrat', sans-serif;
    color: #0d1f33;
    font-size: 1.1em;
    margin: 0;
}

.cookie-category p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #c41e3a;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(30px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #28a745;
    cursor: not-allowed;
}

.cookie-settings-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-settings-content {
        padding: 25px;
    }

    .cookie-settings-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}