 .cookie-modal {
            background-color: #fff;
            border: 1px solid #e0e0e0;
           
        }

        .modal-header {
            padding: 20px 30px;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .c-logo {
            display: flex;
            align-items: center;
        }

       .c-logo img {height:50px} 

        .modal-header h2 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            padding: 0;
            line-height: 1;
        }

        .close-btn:hover {
            color: #333;
        }

        .modal-body {
            display: flex;
            min-height: 350px;
        }

        .sidebar {
            width: 200px;
            background-color: #f9f9f9;
            border-right: 1px solid #e0e0e0;
            flex-shrink: 0;
        }

        .menu-item {
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
            color: #555;
        }

        .menu-item:hover {
            background-color: #f0f0f0;
        }

        .menu-item.active {
            background-color: #2C236B;
            color: #fff;
            font-weight: 500;
        }

        .content-area {
            flex: 1;
            padding: 25px 30px;
        }

        .content-section {
            display: none;
        }

        .content-section.active {
            display: block;
        }

        .content-section h3 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .content-section p {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }

        .content-section a {
            color: #c41e3a;
            text-decoration: underline;
            font-size: 14px;
        }

        .content-section a:hover {
            color: #a01830;
        }

        .modal-footer {
            padding: 20px 30px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: #c41e3a;
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #a01830;
        }

        .btn-secondary {
            background-color: #c41e3a;
            color: #fff;
        }

        .btn-secondary:hover {
            background-color: #a01830;
        }

        .btn-group {
            display: flex;
            gap: 15px;
        }

        .toggle-switch {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .toggle-switch span {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .3s;
            border-radius: 26px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #c41e3a;
        }

        input:checked + .slider:before {
            transform: translateX(24px);
        }

        .cookie-list {
            margin-top: 20px;
        }

        .cookie-item {
            background-color: #f8f8f8;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .cookie-item h4 {
            font-size: 14px;
            color: #333;
            margin-bottom: 8px;
        }

        .cookie-item p {
            font-size: 13px;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }