.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #10387D 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #ED6D00;
}

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

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

.cookie-consent-content {
    flex: 1;
    min-width: 0;
}

.cookie-consent-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.cookie-consent-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.cookie-consent-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-links a {
    color: #ED6D00;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-consent-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: #ED6D00;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(237, 109, 0, 0.3);
}

.cookie-btn-accept:hover {
    background: #e66500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 109, 0, 0.4);
}

.cookie-btn-accept:active {
    transform: translateY(0);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.cookie-settings-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-left: 10px;
}

.cookie-settings-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ED6D00;
    color: #ED6D00;
}

.cookie-consent-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.cookie-consent-close:hover {
    color: #ED6D00;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

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

.cookie-settings-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    background: linear-gradient(135deg, #10387D 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #ED6D00;
}

.cookie-settings-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.cookie-settings-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #10387D;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

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

.cookie-option-title {
    font-size: 18px;
    font-weight: 600;
    color: #10387D;
}

.cookie-option-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 10px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + .cookie-switch-slider {
    background-color: #ED6D00;
}

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

.cookie-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-switch.disabled .cookie-switch-slider {
    background-color: #10387D;
}

.cookie-settings-footer {
    padding: 20px 30px;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-settings-footer .cookie-btn {
    min-width: 120px;
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-content h3 {
        font-size: 18px;
    }

    .cookie-consent-content p {
        font-size: 14px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .cookie-settings-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .cookie-consent-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .cookie-settings-content {
        max-height: 95vh;
    }

    .cookie-settings-header {
        padding: 20px;
    }

    .cookie-settings-header h2 {
        font-size: 20px;
    }

    .cookie-settings-body {
        padding: 20px;
    }

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

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

.cookie-icon {
    display: inline-block;
    margin-right: 8px;
    color: #ED6D00;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px 0;
    }

    .cookie-consent-content h3 {
        padding-right: 40px;
    }
}