 .cookie-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #1a1a1a none repeat scroll 0 0;
            color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            max-width: 600px;
            width: 90%;
            z-index: 1000;
            display: none;
        }

        .cookie-notification.active {
            display: block;
            animation: slideUp 0.5s ease-out;
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cookie-text {
            text-align: center;
        }

        .cookie-text h3 {
            margin: 0 0 12px 0;
            font-size: 20px;
            color: #4CAF50;
        }

        .cookie-text p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #e0e0e0;
        }
/*****************/
        .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
		
		.cookie-buttons a:hover  {
			color: white;
		}

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            min-width: 120px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
/********************/
        .cookie-accept {
            background: #333;
            color: white;
        }

        .cookie-accept:hover {
            
            transform: translateY(-2px);
        }

        .cookie-settings {
            background: #333;
            color: white;
        }

        .cookie-settings:hover {
        
            transform: translateY(-2px);
        }

        .cookie-reject {
            background: #333;
            color: white;
        }

        .cookie-reject:hover {
 
            transform: translateY(-2px);
        }

        .cookie-link {
            color: #4CAF50;
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
        }

        .cookie-link:hover {
            color: #45a049;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .main-content {
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .settings-link {
            display: inline-block;
            margin-top: 20px;
            color: #2196F3;
            text-decoration: none;
        }

        .settings-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .cookie-notification {
                padding: 20px;
            }
            
            .cookie-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cookie-btn {
                width: 100%;
                max-width: 200px;
            }
        }


/********************************************************************************************/
        .cookie_area{
            padding: 40px 0 40px;
        }

        .settings-container {
            max-width: 800px;
            margin: 40px auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
        }


        .settings-content {
            padding: 40px;
        }

        .settings-section {
            margin-bottom: 40px;
        }

        .settings-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8em;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }

        .cookie-option {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
			

        }
		
		.cookie-option, .success-message{
			font-size: 15px;
			margin: auto;
			margin-top: 29px;
            width: 90%;
		}

        		


        .cookie-option:hover {
            border-color: #333;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
        }

        .cookie-option.required {
            background: #e8f5e8;
            border-color: #27ae60;
			

        }

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

        .option-header label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.2em;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
        }

        .option-header input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #333;
        }

        .option-description {
            color: #666;
            font-size: 0.95em;
            line-height: 1.5;
            margin-left: 32px;
        }

        .required-badge {
            background: #27ae60;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8em;
            font-weight: 600;
        }

        .settings-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e9ecef;
        }

        .action-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 160px;
        }

        .save-btn {
            background: #333;
            color: white;
        }

        .save-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        .reject-all-btn {
            background: #333;
            color: white;
        }

        .reject-all-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        .accept-all-btn {
            background: #333;
            color: white;
        }

        .accept-all-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

    
        .settings-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }

        .setting-item {
            padding: 8px;
            background: white;
            border-radius: 4px;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .settings-container {
                margin: 20px auto;
            }

            .settings-content {
                padding: 20px;
            }

            .settings-header h1 {
                font-size: 2em;
            }

            .option-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .settings-actions {
                
            }

            .action-btn {
                width: 250px;
            }
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
